[srvx-commits] CVS: services/src opserv.c,1.187.2.52,1.187.2.53
Brought to you by:
entrope
From: Entrope <en...@us...> - 2001-09-04 21:28:43
|
Update of /cvsroot/srvx/services/src In directory usw-pr-cvs1:/tmp/cvs-serv2742/src Modified Files: Tag: rel-1_0 opserv.c Log Message: include unix time version of channel creation timestamps Index: opserv.c =================================================================== RCS file: /cvsroot/srvx/services/src/opserv.c,v retrieving revision 1.187.2.52 retrieving revision 1.187.2.53 diff -C2 -r1.187.2.52 -r1.187.2.53 *** opserv.c 2001/09/04 18:20:51 1.187.2.52 --- opserv.c 2001/09/04 21:28:40 1.187.2.53 *************** *** 548,552 **** opserv_notice(user, "%s Statistics", channel->name); strftime(buffer, sizeof(buffer), "Created on: %a %b %d %H:%M:%S %Y", localtime(&channel->timestamp)); ! opserv_notice(user, "%s", buffer); strcpy(buffer, "Modes: "); irc_make_chanmode(channel, buffer+strlen(buffer)); --- 548,552 ---- opserv_notice(user, "%s Statistics", channel->name); strftime(buffer, sizeof(buffer), "Created on: %a %b %d %H:%M:%S %Y", localtime(&channel->timestamp)); ! opserv_notice(user, "%s ("FMT_TIME_T")", buffer, channel->timestamp); strcpy(buffer, "Modes: "); irc_make_chanmode(channel, buffer+strlen(buffer)); |