In the "Message from Talk_Daemon" announcement, print the date as well
as the current time. It's nice to know whether the talk request you see was sent just a few minutes ago (assuming you didn't hear the bell), or if it's been decaying for days (weeks?).
This commit is contained in:
parent
889b293a21
commit
4513fdec5e
@ -125,8 +125,10 @@ print_mesg(tty, tf, request, remote_machine)
|
|||||||
max_size = max(max_size, sizes[i]);
|
max_size = max(max_size, sizes[i]);
|
||||||
i++;
|
i++;
|
||||||
(void)snprintf(line_buf[i], N_CHARS,
|
(void)snprintf(line_buf[i], N_CHARS,
|
||||||
"Message from Talk_Daemon@%s at %d:%02d ...",
|
"Message from Talk_Daemon@%s at %d:%02d on %d/%.2d/%.2d ...",
|
||||||
hostname, localclock->tm_hour , localclock->tm_min );
|
hostname, localclock->tm_hour , localclock->tm_min,
|
||||||
|
localclock->tm_year + 1900, localclock->tm_mon,
|
||||||
|
localclock->tm_mday);
|
||||||
sizes[i] = strlen(line_buf[i]);
|
sizes[i] = strlen(line_buf[i]);
|
||||||
max_size = max(max_size, sizes[i]);
|
max_size = max(max_size, sizes[i]);
|
||||||
i++;
|
i++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user