From f047036be2c59549bf1549f8c2a070fee9c1d886 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Tue, 6 Aug 2002 09:03:41 +0000 Subject: [PATCH] Removed itoa() SVN revision: 201 --- elogd.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/elogd.c b/elogd.c index a98bc95a..7f6620fe 100755 --- a/elogd.c +++ b/elogd.c @@ -6,6 +6,9 @@ Contents: Web server program for Electronic Logbook ELOG $Log$ + Revision 2.57 2002/08/06 09:03:41 midas + Removed itoa() + Revision 2.56 2002/08/06 08:57:39 midas Added email notify flag to password file @@ -6046,7 +6049,7 @@ MSG_LIST *msg_list; { msg_list[n].lbs = lbs; msg_list[n].index = j; - itoa(lbs->el_index[j].file_time, msg_list[n].string, 10); + sprintf(msg_list[n].string, "%d", lbs->el_index[j].file_time); n++; } }