From 785c88c05637824537f6ad6fb9020923b4264703 Mon Sep 17 00:00:00 2001 From: brian Date: Fri, 13 Jul 2001 15:07:06 +0000 Subject: Print the month number properly MFC after: 1 week --- libexec/talkd/announce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libexec/talkd') diff --git a/libexec/talkd/announce.c b/libexec/talkd/announce.c index aec851f..eb88a44 100644 --- a/libexec/talkd/announce.c +++ b/libexec/talkd/announce.c @@ -127,7 +127,7 @@ print_mesg(tty, tf, request, remote_machine) (void)snprintf(line_buf[i], N_CHARS, "Message from Talk_Daemon@%s at %d:%02d on %d/%.2d/%.2d ...", hostname, localclock->tm_hour , localclock->tm_min, - localclock->tm_year + 1900, localclock->tm_mon, + localclock->tm_year + 1900, localclock->tm_mon + 1, localclock->tm_mday); sizes[i] = strlen(line_buf[i]); max_size = max(max_size, sizes[i]); -- cgit v1.1