From 54b02c39797443266b370ac3fc66e57107fe01ef Mon Sep 17 00:00:00 2001 From: Chris Conlon Date: Tue, 15 Jul 2014 09:39:37 -0600 Subject: [PATCH] fix order of variables in myDateCb for Windows/VS --- cyassl/test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cyassl/test.h b/cyassl/test.h index 179e049ec..dc00a4d06 100644 --- a/cyassl/test.h +++ b/cyassl/test.h @@ -897,8 +897,8 @@ static INLINE int myVerify(int preverify, CYASSL_X509_STORE_CTX* store) static INLINE int myDateCb(int preverify, CYASSL_X509_STORE_CTX* store) { - (void)preverify; char buffer[CYASSL_MAX_ERROR_SZ]; + (void)preverify; printf("In verification callback, error = %d, %s\n", store->error, CyaSSL_ERR_error_string(store->error, buffer));