]> granicus.if.org Git - apache/commitdiff
fix function names in trace messages
authorJeff Trawick <trawick@apache.org>
Wed, 25 Mar 2009 11:17:08 +0000 (11:17 +0000)
committerJeff Trawick <trawick@apache.org>
Wed, 25 Mar 2009 11:17:08 +0000 (11:17 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@758223 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/simple/simple_io.c
server/mpm/simple/simple_run.c

index 38befa913a264209eecf22a1825b5593dfc8930c..d7c18928b764c4943c02aae1828362b95b68e2e3 100644 (file)
@@ -68,7 +68,7 @@ static apr_status_t simple_io_process(simple_conn_t * scon)
         rv = apr_pollcb_remove(sc->pollcb, &cs->pfd);
         if (rv) {
             ap_log_error(APLOG_MARK, APLOG_ERR, rv, ap_server_conf,
-                         "process_socket: apr_pollset_remove failure");
+                         "process_socket: apr_pollcb_remove failure");
             /*AP_DEBUG_ASSERT(rv == APR_SUCCESS);*/
         }
         
@@ -157,7 +157,7 @@ static apr_status_t simple_io_process(simple_conn_t * scon)
 
             if (rv) {
                 ap_log_error(APLOG_MARK, APLOG_ERR, rv, ap_server_conf,
-                             "process_socket: apr_pollset_add failure in read request line");
+                             "process_socket: apr_pollcb_add failure in read request line");
                 AP_DEBUG_ASSERT(rv == APR_SUCCESS);
             }
 
index b51a14ac140b0bde4695a18af246625b7e5f2798..f8c34e901c356d3efd6d13eb6295c7308c5b0403 100644 (file)
@@ -260,7 +260,7 @@ static int simple_setup_pollcb(simple_core_t * sc)
     
     if (rv) {
         ap_log_error(APLOG_MARK, APLOG_CRIT, rv, NULL,
-                     "simple_core_init: apr_pollcb_create failed.");
+                     "simple_setup_pollcb: apr_pollcb_create failed.");
         return rv;
     }
     return rv;