sic

simple irc client
git clone git://git.suckless.org/sic
Log | Files | Refs | README | LICENSE

commit 72a49d1ed355b7aab70f3ed5a37354911a1d1074
parent 503fe49ef69cbc686440b8561c51f41e31615b2f
Author: arg@10ksloc.org <unknown>
Date:   Thu, 20 Jul 2006 09:52:30 +0200

changing output format

Diffstat:
Msic.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sic.c b/sic.c @@ -52,7 +52,7 @@ pout(char *channel, char *msg) time_t t = time(0); strftime(timestr, sizeof(timestr), "%a %R", localtime(&t)); - fprintf(stdout, "%s: %s %s\n", channel, timestr, msg); + fprintf(stdout, "%s %s: %s\n", timestr, channel, msg); } static void