diff options
author | Omar Polo <op@omarpolo.com> | 2024-01-11 13:18:15 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2024-01-11 13:18:15 +0000 |
commit | d8df67565ca01ed0e6ea0a41613be7d624306042 (patch) | |
tree | cee8e6dc6c8d7fd2dbe9567fea1eb2b32bfc42ee /parse.y | |
parent | 0d5282b6475a30a3f39559c67a1504cc7c6930ea (diff) |
fix missing listen on warning
printed the wrong value for the hostname
Diffstat (limited to 'parse.y')
-rw-r--r-- | parse.y | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -354,7 +354,7 @@ vhost : SERVER string { fatal("snprintf"); yywarn("missing `listen on' in server %s," - " assuming %s port %d", $2, + " assuming %s port %d", host->domain, default_host ? default_host : "*", default_port); listen_on(default_host, portno); |