summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2005-01-18 17:44:15 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2005-01-18 17:44:15 +0000
commitded1dfda4a4b631bf63a3d09c486e887f1b44825 (patch)
treee6ba137c73b7ba69dca20b592de7f68bb04c42ae
parent1cdf522080b71fd2d2d88f74910b825909074997 (diff)
downloadlibapr-ded1dfda4a4b631bf63a3d09c486e887f1b44825.tar.gz
NetWare implementation of apr_procattr_user_set() and apr_procattr_group_set()
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@125520 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--threadproc/netware/proc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/threadproc/netware/proc.c b/threadproc/netware/proc.c
index 7db665921..e72234f74 100644
--- a/threadproc/netware/proc.c
+++ b/threadproc/netware/proc.c
@@ -439,11 +439,13 @@ APR_DECLARE(apr_status_t) apr_procattr_user_set(apr_procattr_t *attr,
const char *username,
const char *password)
{
- return APR_ENOTIMPL;
+ /* Always return SUCCESS because NetWare threads don't run as a user */
+ return APR_SUCCESS;
}
APR_DECLARE(apr_status_t) apr_procattr_group_set(apr_procattr_t *attr,
const char *groupname)
{
- return APR_ENOTIMPL;
+ /* Always return SUCCESS because NetWare threads don't run within a group */
+ return APR_SUCCESS;
}