summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}