You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2002/09/28 02:26:28 UTC

cvs commit: httpd-2.0/support suexec.c

rbb         2002/09/27 17:26:27

  Modified:    support  suexec.c
  Log:
  Re-order header files in suexec.c.  This adds apr.h, which is required
  to get the apr macros.  Other than that, it is just for clarity.
  
  Revision  Changes    Path
  1.21      +3 -2      httpd-2.0/support/suexec.c
  
  Index: suexec.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/support/suexec.c,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- suexec.c	2 May 2002 20:16:34 -0000	1.20
  +++ suexec.c	28 Sep 2002 00:26:27 -0000	1.21
  @@ -68,7 +68,10 @@
    *
    */
   
  +#include "apr.h"
   #include "ap_config.h"
  +#include "suexec.h"
  +
   #include <sys/param.h>
   #include <sys/stat.h>
   #include <sys/types.h>
  @@ -81,8 +84,6 @@
   #include <stdio.h>
   #include <stdarg.h>
   #include <stdlib.h>
  -
  -#include "suexec.h"
   
   #ifdef HAVE_PWD_H
   #include <pwd.h>