The unified diff between revisions [b0cf63e6..] and [5558d083..] is displayed below. It can also be downloaded as a raw diff.
# # # patch "dbutil.c" # from [7d3997b503fd365ea9bf76b2c0cf172572d8fe70] # to [dae0971a480ce3d9774b2412c902d166a2bd0daf] # # patch "svr-session.c" # from [0b0cddd75cb841c5a991b999fde900450a83d8f3] # to [59d11ad9bdadb814c2cb6ce330f3fef2ff96a820] # ============================================================ --- dbutil.c 7d3997b503fd365ea9bf76b2c0cf172572d8fe70 +++ dbutil.c dae0971a480ce3d9774b2412c902d166a2bd0daf @@ -121,7 +121,7 @@ static void generic_dropbear_log(int UNU vsnprintf(printbuf, sizeof(printbuf), format, param); - printf( "%s\n", printbuf); + fprintf( stderr, "%s\n", printbuf); } ============================================================ --- svr-session.c 0b0cddd75cb841c5a991b999fde900450a83d8f3 +++ svr-session.c 59d11ad9bdadb814c2cb6ce330f3fef2ff96a820 @@ -188,7 +188,7 @@ void svr_dropbear_log(int priority, cons datestr[0] = '?'; datestr[1] = '\0'; } #endif - printf( "[%d] %d %s\n", getpid(), timesec, printbuf); + fprintf( stderr, "[%d] %d %s\n", getpid(), timesec, printbuf); } }