From f89272be357c00f9a04826802014fa8b1a12385e Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Sun, 27 May 2001 02:26:11 +0000 Subject: Changed the log() function to log_message(). --- src/log.c | 4 ++-- src/log.h | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/log.c b/src/log.c index 9fe9894..83569ad 100644 --- a/src/log.c +++ b/src/log.c @@ -1,4 +1,4 @@ -/* $Id: log.c,v 1.3 2000-09-21 16:53:51 rjkaes Exp $ +/* $Id: log.c,v 1.4 2001-05-27 02:26:11 rjkaes Exp $ * * Logs the various messages which tinyproxy produces to either a log file or * the syslog daemon. Not much to it... @@ -40,7 +40,7 @@ static char *syslog_level[] = { /* * This routine logs messages to either the log file or the syslog function. */ -void log(short int level, char *fmt, ...) +void log_message(short int level, char *fmt, ...) { va_list args; time_t nowtime; diff --git a/src/log.h b/src/log.h index 2f6b00b..5e3c80e 100644 --- a/src/log.h +++ b/src/log.h @@ -1,4 +1,4 @@ -/* $Id: log.h,v 1.3 2000-09-21 16:53:51 rjkaes Exp $ +/* $Id: log.h,v 1.4 2001-05-27 02:26:11 rjkaes Exp $ * * See 'log.c' for a detailed description. * @@ -82,13 +82,13 @@ * DEBUG2("There was a big problem: %s in connptr %p", "hello", connptr); */ #ifndef NDEBUG -# define DEBUG1(x) log(LOG_DEBUG, "[%s:%d] " x, __FILE__, __LINE__) -# define DEBUG2(x, y...) log(LOG_DEBUG, "[%s:%d] " x, __FILE__, __LINE__, ## y) +# define DEBUG1(x) log_message(LOG_DEBUG, "[%s:%d] " x, __FILE__, __LINE__) +# define DEBUG2(x, y...) log_message(LOG_DEBUG, "[%s:%d] " x, __FILE__, __LINE__, ## y) #else # define DEBUG1(x) do { } while(0) # define DEBUG2(x, y...) do { } while(0) #endif -extern void log(short int level, char *fmt, ...); +extern void log_message(short int level, char *fmt, ...); #endif -- cgit v1.2.3