diff options
author | 2002-12-11 12:22:57 +0000 | |
---|---|---|
committer | 2002-12-11 12:22:57 +0000 | |
commit | 957f0651fddae0086a41e3d8e8ef5e378557a2d2 (patch) | |
tree | bcf0dcbde1738db39ec616783fb461f73c46c998 /usr.sbin/httpd/src | |
parent | Add VIA VT8231 (diff) | |
download | wireguard-openbsd-957f0651fddae0086a41e3d8e8ef5e378557a2d2.tar.xz wireguard-openbsd-957f0651fddae0086a41e3d8e8ef5e378557a2d2.zip |
typos in comments; David Krause
Diffstat (limited to 'usr.sbin/httpd/src')
-rw-r--r-- | usr.sbin/httpd/src/main/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/src/main/util.c b/usr.sbin/httpd/src/main/util.c index ba2836e117b..7428a347a16 100644 --- a/usr.sbin/httpd/src/main/util.c +++ b/usr.sbin/httpd/src/main/util.c @@ -2118,11 +2118,11 @@ API_EXPORT(char *) ap_get_local_host(pool *a) } } else - /* Since we found a fdqn, return it with no logged message. */ + /* Since we found a fqdn, return it with no logged message. */ return server_hostname; } - /* If we don't have an fdqn or IP, fall back to the loopback addr */ + /* If we don't have an fqdn or IP, fall back to the loopback addr */ if (!server_hostname) server_hostname = ap_pstrdup(a, "127.0.0.1"); |