Removed unneeded comment

This commit is contained in:
Ethan Looney
2020-07-22 08:28:43 -07:00
parent 953e7cf181
commit 5e515c12fb

View File

@@ -27161,7 +27161,6 @@ static int test_WOLFSSL_ERROR_MSG (void)
#endif #endif
return ret; return ret;
}/*End test_WOLFSSL_ERROR_MSG*/ }/*End test_WOLFSSL_ERROR_MSG*/
/* /*
* Testing wc_ERR_remove_state * Testing wc_ERR_remove_state
@@ -27178,9 +27177,7 @@ static int test_wc_ERR_remove_state (void)
printf(resultFmt, ret == 0 ? passed : failed); printf(resultFmt, ret == 0 ? passed : failed);
#endif #endif
return ret; return ret;
}/*End test_wc_ERR_remove_state*/ }/*End test_wc_ERR_remove_state*/
/* /*
* Testing wc_ERR_print_errors_fp * Testing wc_ERR_print_errors_fp
@@ -27191,9 +27188,10 @@ static int test_wc_ERR_print_errors_fp (void)
#if (defined(OPENSSL_EXTRA) || defined(DEBUG_WOLFSSL_VERBOSE)) && \ #if (defined(OPENSSL_EXTRA) || defined(DEBUG_WOLFSSL_VERBOSE)) && \
(!defined(NO_FILESYSTEM) && !defined(NO_STDIO_FILESYSTEM)) (!defined(NO_FILESYSTEM) && !defined(NO_STDIO_FILESYSTEM))
long sz; long sz;
printf(testingFmt, "wc_ERR_print_errors_fp()"); printf(testingFmt, "wc_ERR_print_errors_fp()");
WOLFSSL_ERROR(BAD_FUNC_ARG); WOLFSSL_ERROR(BAD_FUNC_ARG);
//XFILE fp = XFOPEN("./certs/ecc-keyPkcs8.pem", "rb");
XFILE fp = XFOPEN("./test-log-dump-to-file.txt", "ar"); XFILE fp = XFOPEN("./test-log-dump-to-file.txt", "ar");
wc_ERR_print_errors_fp(fp); wc_ERR_print_errors_fp(fp);
@@ -27207,7 +27205,6 @@ static int test_wc_ERR_print_errors_fp (void)
XFCLOSE(fp); XFCLOSE(fp);
#endif #endif
return ret; return ret;
}/*End test_wc_ERR_print_errors_fp*/ }/*End test_wc_ERR_print_errors_fp*/
/* /*
* Testing wolfSSL_GetLoggingCb * Testing wolfSSL_GetLoggingCb