summaryrefslogtreecommitdiff
path: root/threadproc/netware
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2003-02-11 23:47:09 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2003-02-11 23:47:09 +0000
commit490f50d817f003242e7e12507b6d730a298d8033 (patch)
tree8ab75628fd0ef2e23f06e60613324d1d91ab5c97 /threadproc/netware
parent088e960aa9cdbbd5f85ce76537554edb9db5e800 (diff)
downloadlibapr-490f50d817f003242e7e12507b6d730a298d8033.tar.gz
Enable APR_PROGRAM_ENV as a command type
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64348 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/netware')
-rw-r--r--threadproc/netware/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/threadproc/netware/proc.c b/threadproc/netware/proc.c
index 6c0bd2cd9..c093b6903 100644
--- a/threadproc/netware/proc.c
+++ b/threadproc/netware/proc.c
@@ -210,7 +210,7 @@ APR_DECLARE(apr_status_t) apr_procattr_dir_set(apr_procattr_t *attr,
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;