1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-29 05:21:37 +03:00

fixed issue with bad certs on cygwin

git-svn-id: svn://svn.code.sf.net/p/axtls/code/trunk@202 9a5d90b5-6617-0410-8a86-bb477d3ed2e3
This commit is contained in:
cameronrich
2011-02-08 11:38:05 +00:00
parent 9c91e355da
commit 7f3d1265ef
5 changed files with 7 additions and 9 deletions

View File

@ -703,13 +703,13 @@ static int cert_tests(void)
}
ssl_ctx_free(ssl_ctx);
res = 0; /* all ok */
res = 0; /* all ok */
printf("All Certificate tests passed\n");
bad_cert:
if (res)
printf("Error: A certificate test failed\n");
return res;
}