fix order of variables in myDateCb for Windows/VS

This commit is contained in:
Chris Conlon
2014-07-15 09:39:37 -06:00
parent 9c9499584d
commit 54b02c3979

View File

@@ -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));