diff options
| -rw-r--r-- | config.mk | 2 | ||||
| -rw-r--r-- | sic.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ # sic version -VERSION = 0.5 +VERSION = 0.6 # Customize below to fit your system @@ -49,7 +49,7 @@ pout(char *channel, char *msg) { static char timestr[18]; time_t t = time(0); - strftime(timestr, sizeof(timestr), "%a %R", localtime(&t)); + strftime(timestr, sizeof(timestr), "%F %R", localtime(&t)); fprintf(stdout, "%-8.8s: %s %s\n", channel, timestr, msg); } |
