You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@hyperreal.org on 2000/01/28 03:29:06 UTC

cvs commit: apache-2.0/src/lib/apr/threadproc/unix proc.c

stoddard    00/01/27 18:29:05

  Modified:    src/lib/apr/threadproc/unix proc.c
  Log:
  Fix more funky indenting
  
  Revision  Changes    Path
  1.15      +6 -6      apache-2.0/src/lib/apr/threadproc/unix/proc.c
  
  Index: proc.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/threadproc/unix/proc.c,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- proc.c	1999/12/31 04:15:13	1.14
  +++ proc.c	2000/01/28 02:29:04	1.15
  @@ -474,12 +474,12 @@
           return errno;
       }
       if ((status = waitpid(proc->pid, NULL, WUNTRACED | WNOHANG)) > 0) {
  -            return APR_CHILD_DONE;
  -        }
  -        else if (status == 0) {
  -            return APR_CHILD_NOTDONE;
  -        }
  -        return errno;
  +        return APR_CHILD_DONE;
  +    }
  +    else if (status == 0) {
  +        return APR_CHILD_NOTDONE;
  +    }
  +    return errno;
   } 
   
   /* ***APRDOC********************************************************