Fix left out printf's

This commit is contained in:
Manuel Pégourié-Gonnard 2015-01-29 11:47:41 +00:00
parent 860b51642d
commit 7e81e7003f
3 changed files with 5 additions and 6 deletions

View File

@ -87,7 +87,7 @@ int main( int argc, char *argv[] )
ret = 0; ret = 0;
cleanup: cleanup:
printf( "\n" ); polarssl_printf( "\n" );
fclose( f ); fclose( f );
entropy_free( &entropy ); entropy_free( &entropy );

View File

@ -1512,7 +1512,7 @@ reset:
#if !defined(_WIN32) #if !defined(_WIN32)
if( received_sigterm ) if( received_sigterm )
{ {
printf( " interrupted by SIGTERM\n" ); polarssl_printf( " interrupted by SIGTERM\n" );
ret = 0; ret = 0;
goto exit; goto exit;
} }
@ -1787,7 +1787,6 @@ data_exchange:
} }
buf[written] = '\0'; buf[written] = '\0';
printf( " %d bytes written in %d fragments\n\n%s\n", written, frags, (char *) buf );
polarssl_printf( " %d bytes written in %d fragments\n\n%s\n", written, frags, (char *) buf ); polarssl_printf( " %d bytes written in %d fragments\n\n%s\n", written, frags, (char *) buf );
ret = 0; ret = 0;
@ -1825,7 +1824,7 @@ exit:
} }
#endif #endif
printf( " . Cleaning up..." ); polarssl_printf( " . Cleaning up..." );
fflush( stdout ); fflush( stdout );
if( client_fd != -1 ) if( client_fd != -1 )
@ -1866,7 +1865,7 @@ exit:
memory_buffer_alloc_free(); memory_buffer_alloc_free();
#endif #endif
printf( " done.\n" ); polarssl_printf( " done.\n" );
#if defined(_WIN32) #if defined(_WIN32)
polarssl_printf( " + Press Enter to exit this program.\n" ); polarssl_printf( " + Press Enter to exit this program.\n" );

View File

@ -94,7 +94,7 @@ while (my $line = <GREP>)
my $found_hl = grep $_ eq $module_name, @high_level_modules; my $found_hl = grep $_ eq $module_name, @high_level_modules;
if (!$found_ll && !$found_hl) if (!$found_ll && !$found_hl)
{ {
printf("Error: Do not know how to handle: $module_name\n"); polarssl_printf("Error: Do not know how to handle: $module_name\n");
exit 1; exit 1;
} }