You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pq...@apache.org on 2008/10/29 09:18:45 UTC

svn commit: r708821 - /httpd/httpd/trunk/modules/http/http_request.c

Author: pquerna
Date: Wed Oct 29 01:18:45 2008
New Revision: 708821

URL: http://svn.apache.org/viewvc?rev=708821&view=rev
Log:
* modules/http/http_request.c
  (ap_process_async_request): Fix warning: 'return' with a value, in function 
      returning void

Modified:
    httpd/httpd/trunk/modules/http/http_request.c

Modified: httpd/httpd/trunk/modules/http/http_request.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_request.c?rev=708821&r1=708820&r2=708821&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_request.c (original)
+++ httpd/httpd/trunk/modules/http/http_request.c Wed Oct 29 01:18:45 2008
@@ -297,7 +297,7 @@
         ap_die(access_status, r);
     }
 
-    return ap_process_request_after_handler(r);
+    ap_process_request_after_handler(r);
 }
 
 void ap_process_request(request_rec *r)