mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-13 13:01:55 +03:00
some typo fixes
git-svn-id: svn://svn.code.sf.net/p/axtls/code/trunk@43 9a5d90b5-6617-0410-8a86-bb477d3ed2e3
This commit is contained in:
@ -424,11 +424,7 @@ sub do_client
|
||||
$res = axtlsp::ssl_handshake_status($ssl);
|
||||
if ($res != $axtlsp::SSL_OK)
|
||||
{
|
||||
if (!$quiet)
|
||||
{
|
||||
axtlsp::ssl_display_error($res);
|
||||
}
|
||||
|
||||
axtlsp::ssl_display_error($res) if !$quiet;
|
||||
axtlsp::ssl_free($ssl);
|
||||
exit 1;
|
||||
}
|
||||
@ -456,11 +452,7 @@ sub do_client
|
||||
$res = axtlsp::ssl_handshake_status($ssl);
|
||||
if ($res != $axtlsp::SSL_OK)
|
||||
{
|
||||
if (!$quiet)
|
||||
{
|
||||
axtlsp::ssl_display_error($res);
|
||||
}
|
||||
|
||||
axtlsp::ssl_display_error($res) if not $quiet;
|
||||
exit 1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user