The unified diff between revisions [7a3b7b90..] and [b0cf63e6..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'svr-session.c'

#
#
# patch "svr-session.c"
#  from [790cc112493b4feb3c1c8df67fad2efb113b5c16]
#    to [0b0cddd75cb841c5a991b999fde900450a83d8f3]
#
============================================================
--- svr-session.c	790cc112493b4feb3c1c8df67fad2efb113b5c16
+++ svr-session.c	0b0cddd75cb841c5a991b999fde900450a83d8f3
@@ -182,11 +182,13 @@ void svr_dropbear_log(int priority, cons
 	if (!svr_opts.usingsyslog || havetrace)
 	{
 		timesec = time(NULL);
+#if 0
 		if (strftime(datestr, sizeof(datestr), "%b %d %H:%M:%S",
 					localtime(&timesec)) == 0) {
 			datestr[0] = '?'; datestr[1] = '\0';
 		}
-		printf( "[%d] %s %s\n", getpid(), datestr, printbuf);
+#endif
+		printf( "[%d] %d %s\n", getpid(), timesec, printbuf);
 	}
 }