commit 35adaaa9398cb80c6f9d2797b92e2c8460faaacc from: Omar Polo date: Fri Sep 23 13:06:29 2022 UTC use %token and not %type for NUMBER and STRING commit - c464d38a34d758a747c19e2da7b4fa72c700928c commit + 35adaaa9398cb80c6f9d2797b92e2c8460faaacc blob - d255275c32b30484bdab0a3d64dd11b8be3ef8e4 blob + 8b2ea541f796c433e641576d696a4a8170cc0639 --- parse.y +++ parse.y @@ -103,9 +103,9 @@ typedef struct { %token INCLUDE ERROR %token CHROOT HOSTNAME PORT PREFORK PROXY SOURCE STYLESHEET -%type NUMBER +%token NUMBER +%token STRING %type port -%type STRING %type string %%