Loading server/vhost.c +3 −3 Changes for server/vhost.c: 3 added lines, 3 removed lines. Original line number Diff line number Diff line Loading @@ -183,7 +183,7 @@ static const char *get_addresses(apr_pool_t *p, const char *w_, if (strcmp(host, "*") == 0) { rv = apr_sockaddr_info_get(&my_addr, "0.0.0.0", APR_INET, port, 0, p); if (rv) { return "Cannot not resolve address '0.0.0.0' -- " return "Could not resolve address '0.0.0.0' -- " "check resolver configuration."; } } Loading @@ -191,7 +191,7 @@ static const char *get_addresses(apr_pool_t *p, const char *w_, || strcmp(host, "255.255.255.255") == 0) { rv = apr_sockaddr_info_get(&my_addr, "255.255.255.255", APR_INET, port, 0, p); if (rv) { return "Cannot resolve address '255.255.255.255' -- " return "Could not resolve address '255.255.255.255' -- " "check resolver configuration."; } } Loading @@ -199,7 +199,7 @@ static const char *get_addresses(apr_pool_t *p, const char *w_, rv = apr_sockaddr_info_get(&my_addr, host, APR_UNSPEC, port, 0, p); if (rv != APR_SUCCESS) { ap_log_error(APLOG_MARK, APLOG_ERR, rv, NULL, "Cannot resolve host name %s --- ignoring!", host); "Could not resolve host name %s -- ignoring!", host); return NULL; } } Loading Loading
server/vhost.c +3 −3 Changes for server/vhost.c: 3 added lines, 3 removed lines. Original line number Diff line number Diff line Loading @@ -183,7 +183,7 @@ static const char *get_addresses(apr_pool_t *p, const char *w_, if (strcmp(host, "*") == 0) { rv = apr_sockaddr_info_get(&my_addr, "0.0.0.0", APR_INET, port, 0, p); if (rv) { return "Cannot not resolve address '0.0.0.0' -- " return "Could not resolve address '0.0.0.0' -- " "check resolver configuration."; } } Loading @@ -191,7 +191,7 @@ static const char *get_addresses(apr_pool_t *p, const char *w_, || strcmp(host, "255.255.255.255") == 0) { rv = apr_sockaddr_info_get(&my_addr, "255.255.255.255", APR_INET, port, 0, p); if (rv) { return "Cannot resolve address '255.255.255.255' -- " return "Could not resolve address '255.255.255.255' -- " "check resolver configuration."; } } Loading @@ -199,7 +199,7 @@ static const char *get_addresses(apr_pool_t *p, const char *w_, rv = apr_sockaddr_info_get(&my_addr, host, APR_UNSPEC, port, 0, p); if (rv != APR_SUCCESS) { ap_log_error(APLOG_MARK, APLOG_ERR, rv, NULL, "Cannot resolve host name %s --- ignoring!", host); "Could not resolve host name %s -- ignoring!", host); return NULL; } } Loading