You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2014/06/09 02:05:10 UTC

svn commit: r1601281 - in /httpd/httpd/trunk: docs/log-message-tags/next-number server/listen.c

Author: ylavic
Date: Mon Jun  9 00:05:09 2014
New Revision: 1601281

URL: http://svn.apache.org/r1601281
Log:
core: Update empty log tags.

Modified:
    httpd/httpd/trunk/docs/log-message-tags/next-number
    httpd/httpd/trunk/server/listen.c

Modified: httpd/httpd/trunk/docs/log-message-tags/next-number
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/log-message-tags/next-number?rev=1601281&r1=1601280&r2=1601281&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/log-message-tags/next-number (original)
+++ httpd/httpd/trunk/docs/log-message-tags/next-number Mon Jun  9 00:05:09 2014
@@ -1 +1 @@
-2640
+2642

Modified: httpd/httpd/trunk/server/listen.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/listen.c?rev=1601281&r1=1601280&r2=1601281&view=diff
==============================================================================
--- httpd/httpd/trunk/server/listen.c (original)
+++ httpd/httpd/trunk/server/listen.c Mon Jun  9 00:05:09 2014
@@ -781,7 +781,7 @@ AP_DECLARE(apr_status_t) ap_duplicate_li
             duplr->next = NULL;
             if ((stat = apr_socket_create(&duplr->sd, duplr->bind_addr->family,
                                           SOCK_STREAM, 0, p)) != APR_SUCCESS) {
-                ap_log_perror(APLOG_MARK, APLOG_CRIT, 0, p, APLOGNO()
+                ap_log_perror(APLOG_MARK, APLOG_CRIT, 0, p, APLOGNO(02640)
                               "ap_duplicate_socket: for address %pI, "
                               "cannot duplicate a new socket!",
                               duplr->bind_addr);
@@ -792,7 +792,7 @@ AP_DECLARE(apr_status_t) ap_duplicate_li
             use_nonblock = (ap_listeners && ap_listeners->next);
             if ((stat = apr_socket_opt_set(duplr->sd, APR_SO_NONBLOCK, use_nonblock))
                 != APR_SUCCESS) {
-                ap_log_perror(APLOG_MARK, APLOG_CRIT, stat, p, APLOGNO()
+                ap_log_perror(APLOG_MARK, APLOG_CRIT, stat, p, APLOGNO(02641)
                               "unable to control socket non-blocking status");
                 return stat;
             }