From: tb Date: Wed, 5 Oct 2016 23:28:28 +0000 (+0000) Subject: Add back the call to yyparse() that was accidentally dropped in the previous commit... X-Git-Tag: v6.6~71 X-Git-Url: https://git.armaanb.net/?a=commitdiff_plain;h=25cd40416e98dd79c786ff01eda308fb5ef4a980;hp=a6f4fdf684c40fecb091229e82995bf66e666fdf;p=opendoas.git Add back the call to yyparse() that was accidentally dropped in the previous commit. Fortunately, doas fails closed... ok tedu --- diff --git a/doas.c b/doas.c index a4686ef..0a23595 100644 --- a/doas.c +++ b/doas.c @@ -177,6 +177,7 @@ parseconfig(const char *filename, int checkperms) errx(1, "%s is not owned by root", filename); } + yyparse(); fclose(yyfp); if (parse_errors) exit(1);