summaryrefslogtreecommitdiff
path: root/user/unix
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2001-02-21 23:38:47 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2001-02-21 23:38:47 +0000
commit0aac6bf9b9d694a64120d90d13fcccac428d40d3 (patch)
tree1eb30232fd0e4240bc0e2a68ba996260c9b25f88 /user/unix
parent18b023ca77902601cf9cd553caecf5574edb342e (diff)
downloadapr-0aac6bf9b9d694a64120d90d13fcccac428d40d3.tar.gz
Missing the apr_pool_t arg required for more complex queries of uid/gid
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61278 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'user/unix')
-rw-r--r--user/unix/userinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/user/unix/userinfo.c b/user/unix/userinfo.c
index cc2e98cfd..2987153f5 100644
--- a/user/unix/userinfo.c
+++ b/user/unix/userinfo.c
@@ -99,7 +99,7 @@ APR_DECLARE(apr_status_t) apr_get_home_directory(char **dirname,
}
APR_DECLARE(apr_status_t) apr_get_userid(apr_uid_t *uid, apr_gid_t *gid,
- const char *username)
+ const char *username, apr_pool_t *p)
{
struct passwd *pw;
apr_status_t rv;