summaryrefslogtreecommitdiff
path: root/threadproc/netware/proc.c
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>2013-10-17 15:10:11 +0000
committerJim Jagielski <jim@apache.org>2013-10-17 15:10:11 +0000
commit83f1d0dd4db126de59e7c23dcfaacfe247743b4a (patch)
treea1e334e9d4bc5b999a88b3f65784de0e19fdfcad /threadproc/netware/proc.c
parentfd2c51a0674a0a50a526e98ed651e0c477e9c86c (diff)
downloadapr-83f1d0dd4db126de59e7c23dcfaacfe247743b4a.tar.gz
Merge r1533104 from trunk:
it should really handle src==NULL Reviewed/backported by: jim git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.5.x@1533105 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/netware/proc.c')
-rw-r--r--threadproc/netware/proc.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/threadproc/netware/proc.c b/threadproc/netware/proc.c
index d2404a821..e5306f9d8 100644
--- a/threadproc/netware/proc.c
+++ b/threadproc/netware/proc.c
@@ -505,3 +505,11 @@ APR_DECLARE(apr_status_t) apr_procattr_group_set(apr_procattr_t *attr,
/* Always return SUCCESS because NetWare threads don't run within a group */
return APR_SUCCESS;
}
+
+APR_DECLARE(apr_status_t) apr_procattr_perms_set_register(apr_procattr_t *attr,
+ apr_perms_setfn_t *perms_set_fn,
+ void *data,
+ apr_fileperms_t perms)
+{
+ return APR_ENOTIMPL;
+}