You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bn...@apache.org on 2003/02/12 00:47:10 UTC

cvs commit: apr/threadproc/netware proc.c

bnicholes    2003/02/11 15:47:09

  Modified:    threadproc/netware proc.c
  Log:
  Enable APR_PROGRAM_ENV as a command type
  
  Revision  Changes    Path
  1.24      +1 -1      apr/threadproc/netware/proc.c
  
  Index: proc.c
  ===================================================================
  RCS file: /home/cvs/apr/threadproc/netware/proc.c,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- proc.c	11 Feb 2003 17:15:58 -0000	1.23
  +++ proc.c	11 Feb 2003 23:47:09 -0000	1.24
  @@ -210,7 +210,7 @@
   APR_DECLARE(apr_status_t) apr_procattr_cmdtype_set(apr_procattr_t *attr,
                                        apr_cmdtype_e cmd) 
   {
  -    if (cmd != APR_PROGRAM)
  +    if ((cmd != APR_PROGRAM) && (cmd != APR_PROGRAM_ENV))
           return APR_ENOTIMPL;
       attr->cmdtype = cmd;
       return APR_SUCCESS;