commit - d571a1762e9ff7281a5363373468c1e00a62ed42
commit + 031687baf3081932383b85041c49de781c43e432
blob - 78e7f005317e5620be61b4b2bb064c91e4eff405
blob + 765208e819180a987e11496151b42a2800b2aed9
--- gotwebd/gotwebd.conf.5
+++ gotwebd/gotwebd.conf.5
#show_site_owner on
#show_repo_owner on
#show_repo_age on
- #show_repo_description no
+ #show_repo_description on
#show_repo_cloneurl on
#respect_exportok off
blob - f850d52bdb09788ea17c47cf4efaba216c389919
blob + 686908558b4951371e282ff25989e0b4eb8eb819
--- gotwebd/parse.y
+++ gotwebd/parse.y
boolean : STRING {
if (strcasecmp($1, "1") == 0 ||
- strcasecmp($1, "yes") == 0 ||
strcasecmp($1, "on") == 0)
$$ = 1;
else if (strcasecmp($1, "0") == 0 ||
- strcasecmp($1, "off") == 0 ||
- strcasecmp($1, "no") == 0)
+ strcasecmp($1, "off") == 0)
$$ = 0;
else {
yyerror("invalid boolean value '%s'", $1);
new_srv->fcgi_socket = 1;
}
| LISTEN ON SOCKET STRING {
- if (!strcasecmp($4, "off") ||
- !strcasecmp($4, "no")) {
+ if (strcasecmp($4, "off") == 0) {
new_srv->unix_socket = 0;
free($4);
YYACCEPT;