From 6a428fb60d8ec6092d428b2e0f869a31f4890dc7 Mon Sep 17 00:00:00 2001 From: ptt Date: Mon, 13 May 2002 03:20:04 +0000 Subject: replace time(NULL) by now git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@163 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/chat.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'mbbsd/chat.c') diff --git a/mbbsd/chat.c b/mbbsd/chat.c index 4825379b..e7e7846a 100644 --- a/mbbsd/chat.c +++ b/mbbsd/chat.c @@ -1,4 +1,4 @@ -/* $Id: chat.c,v 1.2 2002/04/28 19:35:28 in2 Exp $ */ +/* $Id: chat.c,v 1.3 2002/05/13 03:20:04 ptt Exp $ */ #include #include #include @@ -20,6 +20,7 @@ extern userinfo_t *currutmp; static int chatline; static int stop_line; /* next line of bottom of message window area */ static FILE *flog; +extern time_t now; static void printchatline(char *str) { move(chatline, 0); @@ -192,11 +193,9 @@ static void chat_help(char *arg) { } static void chat_date() { - time_t thetime; char genbuf[200]; - time(&thetime); - sprintf(genbuf, "◆ " BBSNAME "標準時間: %s", Cdate(&thetime)); + sprintf(genbuf, "◆ " BBSNAME "標準時間: %s", Cdate(&now)); printchatline(genbuf); } -- cgit v1.2.3