From 627c88c73694c403d00db7f62447cfe356cd299f Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Sun, 27 May 2001 02:25:21 +0000 Subject: Changed all the references to log() to log_message(). --- src/grammar.y | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/grammar.y b/src/grammar.y index 4cc1261..e8600f0 100644 --- a/src/grammar.y +++ b/src/grammar.y @@ -1,4 +1,4 @@ -/* $Id: grammar.y,v 1.1 2000-09-12 00:12:52 rjkaes Exp $ +/* $Id: grammar.y,v 1.2 2001-05-27 02:25:21 rjkaes Exp $ * * This is the grammar for tinyproxy's configuration file. It needs to be * in sync with scanner.l. If you know more about yacc and lex than I do @@ -82,7 +82,7 @@ statement #ifdef HAVE_SYSLOG_H config.syslog = $2; #else - log(LOG_WARNING, "Syslog support was not compiled in."); + log_message(LOG_WARNING, "Syslog support was not compiled in."); #endif } | KW_MAXCLIENTS NUMBER { thread_configure(THREAD_MAXCLIENTS, $2); } @@ -106,7 +106,7 @@ statement #ifdef FILTER_ENABLE config.filter = $2; #else - log(LOG_WARNING, "Filter support was not compiled in."); + log_message(LOG_WARNING, "Filter support was not compiled in."); #endif } | KW_XTINYPROXY network_address { config.my_domain = $2; } @@ -116,7 +116,7 @@ statement config.tunnel_name = $2; config.tunnel_port = $4; #else - log(LOG_WARNING, "Tunnel support was not compiled in."); + log_message(LOG_WARNING, "Tunnel support was not compiled in."); #endif } | KW_LISTEN NUMERIC_ADDRESS { config.ipAddr = $2; } -- cgit v1.2.3