Index: include/apr_thread_proc.h =================================================================== RCS file: /home/cvs/apr/include/apr_thread_proc.h,v retrieving revision 1.105 diff -u -r1.105 apr_thread_proc.h --- include/apr_thread_proc.h 10 Jun 2004 10:57:24 -0000 1.105 +++ include/apr_thread_proc.h 11 Jun 2004 15:38:03 -0000 @@ -45,7 +45,10 @@ APR_SHELLCMD, /**< use the shell to invoke the program */ APR_PROGRAM, /**< invoke the program directly, no copied env */ APR_PROGRAM_ENV, /**< invoke the program, replicating our environment */ - APR_PROGRAM_PATH /**< find program on PATH, use our environment */ + APR_PROGRAM_PATH, /**< find program on PATH, use our environment */ + APR_SHELLCMD_ENV, /**< use the shell to invoke the program, replicating + * our environment + */ } apr_cmdtype_e; typedef enum { @@ -451,6 +454,7 @@ * @param cmd The type of command. One of: *
  *            APR_SHELLCMD     --  Anything that the shell can handle
+ *            APR_SHELLCMD_ENV --  Anything that the shell can handle, copy env
  *            APR_PROGRAM      --  Executable program   (default) 
  *            APR_PROGRAM_ENV  --  Executable program, copy environment
  *            APR_PROGRAM_PATH --  Executable program on PATH, copy env