aboutsummaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2023-07-23 19:11:09 +0000
committerOmar Polo <op@omarpolo.com>2023-07-23 19:11:09 +0000
commit3d56cb53361a531d410d116cbc752e07d20dfa05 (patch)
tree65f6b7ff3ab6bbb935f4f19f02bb7b89c119e481 /parse.y
parent60f4107da6ed88a34867cdcbf63794b5dc039f94 (diff)
fix a reduce/reduce conflict
location -> error and locopt -> fastcgi -> error both end up with a optnl that can be reduced to the empty string.
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y1
1 files changed, 0 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index c5f535f..479c094 100644
--- a/parse.y
+++ b/parse.y
@@ -501,7 +501,6 @@ fastcgi : FASTCGI '{' optnl fastcgiopts '}'
loc->fcgi = fastcgi_conf($2, NULL);
free($2);
}
- | error '}'
;
fastcgiopts : /* empty */