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...@locus.apache.org on 2000/10/30 20:30:58 UTC

cvs commit: apache-2.0/src/modules/standard mod_suexec.c

rbb         00/10/30 11:30:57

  Modified:    src/modules/standard mod_suexec.c
  Log:
  Fix a const problem.
  
  Revision  Changes    Path
  1.2       +1 -1      apache-2.0/src/modules/standard/mod_suexec.c
  
  Index: mod_suexec.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/standard/mod_suexec.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- mod_suexec.c	2000/10/23 15:30:53	1.1
  +++ mod_suexec.c	2000/10/30 19:30:55	1.2
  @@ -101,7 +101,7 @@
   }
   
   static const char *set_suexec_ugid(cmd_parms *cmd, void *mconfig,
  -                                   char *uid, char *gid)
  +                                   const char *uid, const char *gid)
   {
       suexec_config_t *cfg = (suexec_config_t *) mconfig;
       const char *err = ap_check_cmd_context(cmd, NOT_IN_DIR_LOC_FILE|NOT_IN_LIMIT);