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

cvs commit: httpd-2.0/server/mpm/mpmt_os2 mpmt_os2.c

bjh         02/01/02 18:06:32

  Modified:    server/mpm/mpmt_os2 mpmt_os2.c
  Log:
  OS/2: Allow but ignore unix config directives so the default config files
  don't have to be munged further.
  
  Revision  Changes    Path
  1.11      +13 -0     httpd-2.0/server/mpm/mpmt_os2/mpmt_os2.c
  
  Index: mpmt_os2.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/mpm/mpmt_os2/mpmt_os2.c,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- mpmt_os2.c	30 Dec 2001 13:39:42 -0000	1.10
  +++ mpmt_os2.c	3 Jan 2002 02:06:32 -0000	1.11
  @@ -572,6 +572,13 @@
   
   
   
  +static const char *ignore_cmd(cmd_parms *cmd, void *dummy, const char *arg)
  +{
  +    return NULL;
  +}
  +
  +
  +
   static const command_rec mpmt_os2_cmds[] = {
   LISTEN_COMMANDS,
   AP_INIT_TAKE1( "StartServers", set_daemons_to_start, NULL, RSRC_CONF, 
  @@ -580,6 +587,12 @@
     "Minimum number of idle children, to handle request spikes"),
   AP_INIT_TAKE1("MaxSpareThreads", set_max_spare_threads, NULL, RSRC_CONF,
     "Maximum number of idle children"),
  +AP_INIT_TAKE1("User", ignore_cmd, NULL, RSRC_CONF,
  +  "Not applicable on this platform"),
  +AP_INIT_TAKE1("Group", ignore_cmd, NULL, RSRC_CONF,
  +  "Not applicable on this platform"),
  +AP_INIT_TAKE1("ScoreBoardFile", ignore_cmd, NULL, RSRC_CONF, \
  +  "Not applicable on this platform"),
   { NULL }
   };