diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-05-27 02:26:11 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-05-27 02:26:11 +0000 |
commit | f89272be357c00f9a04826802014fa8b1a12385e (patch) | |
tree | a519f7f9e6f140cafdbef435c243ca4989ac440c /src/log.c | |
parent | 627c88c73694c403d00db7f62447cfe356cd299f (diff) |
Changed the log() function to log_message().
Diffstat (limited to 'src/log.c')
-rw-r--r-- | src/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |