diff --git a/src/log.c b/src/log.c index efc1d63..a24aebd 100644 --- a/src/log.c +++ b/src/log.c @@ -1,4 +1,4 @@ -/* $Id: log.c,v 1.6 2001-06-02 03:38:02 rjkaes Exp $ +/* $Id: log.c,v 1.7 2001-06-05 16:08:15 rjkaes Exp $ * * Logs the various messages which tinyproxy produces to either a log file or * the syslog daemon. Not much to it... @@ -90,7 +90,7 @@ void log_message(short int level, char *fmt, ...) if (!(cf = config.logf)) cf = stderr; - fprintf(cf, "%-9s %s [%u]: ", syslog_level[level], + fprintf(cf, "%-9s %s [%ul]: ", syslog_level[level], time_string, getpid()); vfprintf(cf, fmt, args); fprintf(cf, "\n");