summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2001-05-27 02:26:53 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2001-05-27 02:26:53 +0000
commit91ba2103d113c553d2e8a93215bf1f8e697c4b5b (patch)
tree6afc53aa1424269f5e8f0a1d4ae7cadcd8d51287
parentf89272be357c00f9a04826802014fa8b1a12385e (diff)
downloadtinyproxy-91ba2103d113c553d2e8a93215bf1f8e697c4b5b.tar.gz
tinyproxy-91ba2103d113c553d2e8a93215bf1f8e697c4b5b.zip
Changed the reference from log() to log_message().
Diffstat (limited to '')
-rw-r--r--src/stats.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stats.c b/src/stats.c
index f733fdd..2cd6ec1 100644
--- a/src/stats.c
+++ b/src/stats.c
@@ -1,4 +1,4 @@
-/* $Id: stats.c,v 1.3 2001-05-23 17:59:08 rjkaes Exp $
+/* $Id: stats.c,v 1.4 2001-05-27 02:26:53 rjkaes Exp $
*
* This module handles the statistics for tinyproxy. There are only two
* public API functions. The reason for the functions, rather than just a
@@ -74,7 +74,7 @@ int showstats(struct conn_s *connptr)
connptr->output_message = malloc(MAXBUFFSIZE);
if (!connptr->output_message) {
- log(LOG_CRIT, "Out of memory!");
+ log_message(LOG_CRIT, "Out of memory!");
return -1;
}