- Added exception error parsing when FATAL ssl message is received

This commit is contained in:
Paul Bakker 2012-05-08 13:12:27 +00:00
parent 6b906e5095
commit 3aac1daf1d
2 changed files with 16 additions and 2 deletions

View file

@ -93,8 +93,19 @@ while (my $line = <GREP>)
${$old_define} = $define_name;
}
${$code_check} .= "${white_space}if( use_ret == -($error_name) )\n".
"${white_space} snprintf( buf, buflen, \"$module_name - $description\" );\n"
if ($error_name eq "POLARSSL_ERR_SSL_FATAL_ALERT_MESSAGE")
{
${$code_check} .= "${white_space}if( use_ret == -($error_name) )\n".
"${white_space}\{\n".
"${white_space} snprintf( buf, buflen, \"$module_name - $description\" );\n".
"${white_space} return;\n".
"${white_space}}\n"
}
else
{
${$code_check} .= "${white_space}if( use_ret == -($error_name) )\n".
"${white_space} snprintf( buf, buflen, \"$module_name - $description\" );\n"
}
};
if ($ll_old_define ne "")