From: Jim Jagielski Date: Thu, 5 Mar 2015 14:35:39 +0000 (+0000) Subject: Don't return X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d01d1cae28a491eaa5f594a2508210ca0a9bfd1c;p=thirdparty%2Fapache%2Fhttpd.git Don't return git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1664358 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/motorz/motorz.c b/server/mpm/motorz/motorz.c index abe0a87b05f..2bf61e77ad9 100644 --- a/server/mpm/motorz/motorz.c +++ b/server/mpm/motorz/motorz.c @@ -116,12 +116,11 @@ static void *motorz_io_setup_conn(apr_thread_t * thread, void *baton) ap_log_error(APLOG_MARK, APLOG_DEBUG, status, ap_server_conf, APLOGNO() "motorz_io_setup_conn: motorz_io_process failed (?)"); } - - return NULL; } static apr_status_t motorz_io_user(motorz_core_t *mz, motorz_sb_t *sb) { + /* TODO */ return APR_SUCCESS; } @@ -169,8 +168,6 @@ static void *motorz_timer_invoke(apr_thread_t *thread, void *baton) motorz_timer_t *ep = (motorz_timer_t *)baton; motorz_timer_run(ep); - - return NULL; } static void *motorz_io_invoke(apr_thread_t * thread, void *baton) @@ -187,8 +184,6 @@ static void *motorz_io_invoke(apr_thread_t * thread, void *baton) ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, ap_server_conf, APLOGNO() "motorz_io_invoke: motorz_io_process failed (?)"); } - - return NULL; } static apr_status_t motorz_io_event_process(motorz_core_t *mz, motorz_sb_t *sb)