[srvx-commits] CVS: services/src helpserv.c,1.48,1.49
Brought to you by:
entrope
|
From: Adrian D. <sai...@us...> - 2002-11-10 02:01:30
|
Update of /cvsroot/srvx/services/src
In directory usw-pr-cvs1:/tmp/cvs-serv26586
Modified Files:
helpserv.c
Log Message:
Non-linux compile warning fix
Index: helpserv.c
===================================================================
RCS file: /cvsroot/srvx/services/src/helpserv.c,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -r1.48 -r1.49
*** helpserv.c 9 Nov 2002 03:46:38 -0000 1.48
--- helpserv.c 10 Nov 2002 02:01:27 -0000 1.49
***************
*** 579,583 ****
if (!reason) reason = "";
! sprintf(key, "%s-%lu-%lu", req->hs->helpserv->nick, req->opened, req->id);
saxdb_start_record(reqlog_ctx, key, 1);
if (req->helper) {
--- 579,583 ----
if (!reason) reason = "";
! sprintf(key, "%s-" FMT_TIME_T "-%lu", req->hs->helpserv->nick, req->opened, req->id);
saxdb_start_record(reqlog_ctx, key, 1);
if (req->helper) {
|