chiark / gitweb /
logging: provide vslilog as well as slilog
[secnet.git] / conffile.y
index b6b246c91fbb2dfa09adde21cd3723dcfb26d772..1625122fe762f4a83831eda9c9b3ad55bfd3201b 100644 (file)
@@ -10,6 +10,7 @@
 #include <string.h>
 #include "secnet.h"
 #include "conffile_internal.h"
 #include <string.h>
 #include "secnet.h"
 #include "conffile_internal.h"
+#include "conffile.yy.h"
 #include "util.h"
 #define YYERROR_VERBOSE
 
 #include "util.h"
 #define YYERROR_VERBOSE
 
@@ -17,13 +18,13 @@ static struct p_node *node(uint32_t type, struct p_node *l, struct p_node *r);
 
 static struct p_node *result;
 
 
 static struct p_node *result;
 
-static void yyerror(char *s);
+static void yyerror(const char *s);
 
 %}
 
 %%
 
 
 %}
 
 %%
 
-input:           assignments { result = $1; }
+input:           assignments { result = $1; $$=result; }
                ;
 
 assignments:     assignments assignment { $$=node(T_ALIST, $2, $1); }
                ;
 
 assignments:     assignments assignment { $$=node(T_ALIST, $2, $1); }
@@ -73,7 +74,7 @@ item:           TOK_STRING
 
 %%
 
 
 %%
 
-static void yyerror(char *s)
+static void yyerror(const char *s)
 {
        Message(M_FATAL,"config file %s line %d: %s\n",config_file,
                config_lineno,s);
 {
        Message(M_FATAL,"config file %s line %d: %s\n",config_file,
                config_lineno,s);