Loading CHANGES +5 −0 Original line number Diff line number Diff line Changes with Apache 2.0b1 *) Get the correct IP address if ServerName isn't set and we can't find a fully-qualified domain name at startup. PR#7170 [Danek Duvall <dduvall@eng.sun.com>] *) Make mod_cgid work with SuExec. [Ryan Bloom] *) Adopt apr user/group name features for mod_rewrite. Eliminates some Loading server/util.c +1 −1 Original line number Diff line number Diff line Loading @@ -1798,7 +1798,7 @@ char *ap_get_local_host(apr_pool_t *a) if ((!(p = gethostbyname(str))) || (!(server_hostname = find_fqdn(a, p)))) { /* Recovery - return the default servername by IP: */ if (!str && p->h_addr_list[0]) { if (p->h_addr_list[0]) { apr_snprintf(str, sizeof(str), "%pA", p->h_addr_list[0]); server_hostname = apr_pstrdup(a, str); /* We will drop through to report the IP-named server */ Loading Loading
CHANGES +5 −0 Original line number Diff line number Diff line Changes with Apache 2.0b1 *) Get the correct IP address if ServerName isn't set and we can't find a fully-qualified domain name at startup. PR#7170 [Danek Duvall <dduvall@eng.sun.com>] *) Make mod_cgid work with SuExec. [Ryan Bloom] *) Adopt apr user/group name features for mod_rewrite. Eliminates some Loading
server/util.c +1 −1 Original line number Diff line number Diff line Loading @@ -1798,7 +1798,7 @@ char *ap_get_local_host(apr_pool_t *a) if ((!(p = gethostbyname(str))) || (!(server_hostname = find_fqdn(a, p)))) { /* Recovery - return the default servername by IP: */ if (!str && p->h_addr_list[0]) { if (p->h_addr_list[0]) { apr_snprintf(str, sizeof(str), "%pA", p->h_addr_list[0]); server_hostname = apr_pstrdup(a, str); /* We will drop through to report the IP-named server */ Loading