From b96d955fcac9315b51bd01025be303eabf0cdfc6 Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 19 Feb 2001 04:43:21 +0000 Subject: ${BDECFLAGS} work. And fix a real error in the process. A "MAXUSERS" string could have been passed to free(); There are some warnings here I am not sure how to fix as they are in the lex scanner code, etc. --- usr.sbin/config/config.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/config/config.y') diff --git a/usr.sbin/config/config.y b/usr.sbin/config/config.y index 52f77c0..d6247be 100644 --- a/usr.sbin/config/config.y +++ b/usr.sbin/config/config.y @@ -84,7 +84,7 @@ int maxusers; #define ns(s) strdup(s) -static void yyerror(char *s); +static void yyerror(const char *s); static char * devopt(char *dev) @@ -283,7 +283,7 @@ Device_spec: %% static void -yyerror(char *s) +yyerror(const char *s) { errx(1, "line %d: %s", yyline + 1, s); -- cgit v1.1