summaryrefslogtreecommitdiff
path: root/src/grammar.y
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/grammar.y4
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;
}
;