From 89ada2df2841db06ac71ea3a62ec6af0ea112a08 Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Wed, 24 Apr 2002 16:45:45 +0000 Subject: Moved bind_address inside the config structure. --- src/grammar.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/grammar.y') diff --git a/src/grammar.y b/src/grammar.y index c8e42f6..15f3252 100644 --- a/src/grammar.y +++ b/src/grammar.y @@ -1,4 +1,4 @@ -/* $Id: grammar.y,v 1.9 2002-04-22 19:33:01 rjkaes Exp $ +/* $Id: grammar.y,v 1.10 2002-04-24 16:45:45 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 @@ -155,7 +155,7 @@ statement | KW_BIND NUMERIC_ADDRESS { log_message(LOG_INFO, "Binding outgoing connections to %s", $2); - bind_address = $2; + config.bind_address = $2; } ; -- cgit v1.2.3