Mailing List Archive

svn commit: r1902324 - /httpd/httpd/trunk/server/listen.c
Author: gbechis
Date: Tue Jun 28 16:49:43 2022
New Revision: 1902324

URL: http://svn.apache.org/viewvc?rev=1902324&view=rev
Log:
better error message

Modified:
httpd/httpd/trunk/server/listen.c

Modified: httpd/httpd/trunk/server/listen.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/listen.c?rev=1902324&r1=1902323&r2=1902324&view=diff
==============================================================================
--- httpd/httpd/trunk/server/listen.c (original)
+++ httpd/httpd/trunk/server/listen.c Tue Jun 28 16:49:43 2022
@@ -884,7 +884,8 @@ AP_DECLARE(apr_status_t) ap_duplicate_li
stat = apr_sockaddr_info_get(&sa, hostname, APR_UNSPEC, port, 0, p);
if (stat != APR_SUCCESS) {
ap_log_perror(APLOG_MARK, APLOG_CRIT, stat, p, APLOGNO(10397)
- "unable to control socket status");
+ "failure looking up %s to duplicate "
+ "listening socket", hostname);
return stat;
}
duplr->bind_addr = sa;