You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2013/11/17 20:42:41 UTC

svn commit: r1542799 - /httpd/httpd/trunk/server/mpm_unix.c

Author: jailletc36
Date: Sun Nov 17 19:42:41 2013
New Revision: 1542799

URL: http://svn.apache.org/r1542799
Log:
Remove useless spaces that are not in 2.4.x

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

Modified: httpd/httpd/trunk/server/mpm_unix.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm_unix.c?rev=1542799&r1=1542798&r2=1542799&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm_unix.c (original)
+++ httpd/httpd/trunk/server/mpm_unix.c Sun Nov 17 19:42:41 2013
@@ -504,7 +504,7 @@ static apr_status_t pod_signal_internal(
 AP_DECLARE(apr_status_t) ap_mpm_podx_open(apr_pool_t *p, ap_pod_t **pod)
 {
     apr_status_t rv;
-    
+
     *pod = apr_palloc(p, sizeof(**pod));
     rv = apr_file_pipe_create(&((*pod)->pod_in), &((*pod)->pod_out), p);
     if (rv != APR_SUCCESS) {
@@ -514,11 +514,11 @@ AP_DECLARE(apr_status_t) ap_mpm_podx_ope
      apr_file_pipe_timeout_set((*pod)->pod_in, 0);
      */
     (*pod)->p = p;
-    
+
     /* close these before exec. */
     apr_file_inherit_unset((*pod)->pod_in);
     apr_file_inherit_unset((*pod)->pod_out);
-    
+
     return APR_SUCCESS;
 }
 
@@ -527,7 +527,7 @@ AP_DECLARE(int) ap_mpm_podx_check(ap_pod
     char c;
     apr_os_file_t fd;
     int rc;
-    
+
     /* we need to surface EINTR so we'll have to grab the
      * native file descriptor and do the OS read() ourselves
      */
@@ -547,12 +547,12 @@ AP_DECLARE(int) ap_mpm_podx_check(ap_pod
 AP_DECLARE(apr_status_t) ap_mpm_podx_close(ap_pod_t *pod)
 {
     apr_status_t rv;
-    
+
     rv = apr_file_close(pod->pod_out);
     if (rv != APR_SUCCESS) {
         return rv;
     }
-    
+
     rv = apr_file_close(pod->pod_in);
     if (rv != APR_SUCCESS) {
         return rv;
@@ -576,7 +576,7 @@ static apr_status_t podx_signal_internal
         case AP_MPM_PODX_NORESTART:
             break;
     }
-    
+
     rv = apr_file_write(pod->pod_out, &char_of_death, &one);
     if (rv != APR_SUCCESS) {
         ap_log_error(APLOG_MARK, APLOG_WARNING, rv, ap_server_conf, APLOGNO(2404)
@@ -596,7 +596,7 @@ AP_DECLARE(void) ap_mpm_podx_killpg(ap_p
 {
     int i;
     apr_status_t rv = APR_SUCCESS;
-    
+
     for (i = 0; i < num && rv == APR_SUCCESS; i++) {
         rv = podx_signal_internal(pod, graceful);
     }