Update of /cvsroot/mahogany/M/lib/dspam
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25085/lib/dspam

Modified Files:
        error.c 
Log Message:
use vsnprintf() instead of snprintf()

Index: error.c
===================================================================
RCS file: /cvsroot/mahogany/M/lib/dspam/error.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -u -2 -r1.2 -r1.3
--- error.c     7 Jul 2004 23:43:00 -0000       1.2
+++ error.c     8 Jul 2004 11:02:15 -0000       1.3
@@ -134,5 +134,5 @@
 
   va_start (args, text);
-  snprintf (debug_text, sizeof (debug_text), text, args);
+  vsnprintf (debug_text, sizeof (debug_text), text, args);
   va_end (args);
 
@@ -149,5 +149,5 @@
   va_list args;
   va_start (args, text);
-  snprintf (log_text, sizeof (log_text), text, args);
+  vsnprintf (log_text, sizeof (log_text), text, args);
   va_end (args);
   debug(log_text);



-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to