modify scripts/* and tests/* to use polarssl_snprintf
This commit is contained in:
parent
783d9d1c3e
commit
6aa04bcd85
3 changed files with 15 additions and 9 deletions
|
@ -152,14 +152,14 @@ while (my $line = <GREP>)
|
|||
{
|
||||
${$code_check} .= "${white_space}if( use_ret == -($error_name) )\n".
|
||||
"${white_space}\{\n".
|
||||
"${white_space} snprintf( buf, buflen, \"$module_name - $description\" );\n".
|
||||
"${white_space} polarssl_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"
|
||||
"${white_space} polarssl_snprintf( buf, buflen, \"$module_name - $description\" );\n"
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue