diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-24 16:45:45 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-24 16:45:45 +0000 |
commit | 89ada2df2841db06ac71ea3a62ec6af0ea112a08 (patch) | |
tree | cc8ce95a07f5c2eeb45d7231f5d22915e0846cbe /src/grammar.y | |
parent | e7c7c91d7140cf6fb7dd07b1446b801e0eee289e (diff) |
Moved bind_address inside the config structure.
Diffstat (limited to 'src/grammar.y')
-rw-r--r-- | src/grammar.y | 4 |
1 files changed, 2 insertions, 2 deletions
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; } ; |