From bcfc8c50ad4708e514077d4844c5783603cb8c41 Mon Sep 17 00:00:00 2001 From: toddouska Date: Mon, 5 Dec 2011 16:00:33 -0800 Subject: [PATCH] noFilesystem load_buffer test fix for bigger certs --- cyassl/test.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cyassl/test.h b/cyassl/test.h index 5cabc725f..4d0727527 100644 --- a/cyassl/test.h +++ b/cyassl/test.h @@ -506,11 +506,11 @@ static INLINE unsigned int my_psk_server_cb(CYASSL* ssl, const char* identity, CYASSL_KEY = 3 }; - static INLINE void load_buffer(SSL_CTX* ctx, const char* fname, int type) + static INLINE void load_buffer(CYASSL_CTX* ctx, const char* fname, int type) { /* test buffer load */ long sz = 0; - byte buff[4096]; + byte buff[10000]; FILE* file = fopen(fname, "rb"); if (!file)