X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/d7ffbc127584135dbcd60869217aa7f3d45dcf70..9c695f6d10bd63bd44608bd01f0073fd4c7dd6e6:/src/src/debug.c diff --git a/src/src/debug.c b/src/src/debug.c index 59345d210..ebd932f64 100644 --- a/src/src/debug.c +++ b/src/src/debug.c @@ -1,10 +1,8 @@ -/* $Cambridge: exim/src/src/debug.c,v 1.4 2005/11/14 10:46:27 ph10 Exp $ */ - /************************************************* * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2005 */ +/* Copyright (c) University of Cambridge 1995 - 2009 */ /* See the file NOTICE for conditions of use and distribution. */ @@ -148,7 +146,7 @@ get interleaved. Since some calls to debug_printf() don't end with newline, we save up the text until we do get the newline. */ void -debug_printf(char *format, ...) +debug_printf(const char *format, ...) { va_list ap; va_start(ap, format); @@ -157,7 +155,7 @@ va_end(ap); } void -debug_vprintf(char *format, va_list ap) +debug_vprintf(const char *format, va_list ap) { if (debug_file == NULL) return;