commit a03d32e03e9fdc194f2c5b54c751f23c2d5974f6 from: Tracey Emery date: Mon Nov 09 16:46:41 2020 UTC fix on keywork in gotweb parse.y, patch by Martin Vahlensieck (thanks) commit - f6d8c0acbade4a4b9cc8a674270e689a800b1fb6 commit + a03d32e03e9fdc194f2c5b54c751f23c2d5974f6 blob - 6412c9a5ce40c0e828beb1d323555fdfcde6af01 blob + 2d9864e81b2f1c9a6adb6601a6a49a023d906ba6 --- gotweb/parse.y +++ gotweb/parse.y @@ -88,7 +88,7 @@ typedef struct { %token GOT_WWW_PATH GOT_MAX_REPOS GOT_SITE_NAME GOT_SITE_OWNER GOT_SITE_LINK %token GOT_LOGO GOT_LOGO_URL GOT_SHOW_REPO_OWNER GOT_SHOW_REPO_AGE %token GOT_SHOW_REPO_DESCRIPTION GOT_MAX_REPOS_DISPLAY GOT_REPOS_PATH -%token GOT_MAX_COMMITS_DISPLAY ON ERROR GOT_SHOW_SITE_OWNER +%token GOT_MAX_COMMITS_DISPLAY ERROR GOT_SHOW_SITE_OWNER %token GOT_SHOW_REPO_CLONEURL %token STRING %token NUMBER @@ -102,6 +102,7 @@ grammar : /* empty */ boolean : STRING { if (strcasecmp($1, "true") == 0 || + strcasecmp($1, "on") == 0 || strcasecmp($1, "yes") == 0) $$ = 1; else if (strcasecmp($1, "false") == 0 || @@ -115,7 +116,6 @@ boolean : STRING { } free($1); } - | ON { $$ = 1; } ; main : GOT_REPOS_PATH STRING { gw_conf->got_repos_path = strdup($2);