diff options
author | Omar Polo <op@omarpolo.com> | 2021-01-24 09:14:01 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-01-24 09:14:01 +0000 |
commit | e7a2a99b5acfd15f0a0bba63344ec028a36700b3 (patch) | |
tree | ae066eaa4e40bf5bcc2fe462d51254e4d26e96f2 /parse.y | |
parent | 9adde3d8b2936f53d7b658c91f627336f563ab23 (diff) |
added index option
Diffstat (limited to 'parse.y')
-rw-r--r-- | parse.y | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -106,4 +106,8 @@ servopt : TCERT TSTRING { host->cert = $2; } free(host->lang); host->lang = $2; } + | TINDEX TSTRING { + free(host->index); + host->index = $2; + } ; |