summaryrefslogtreecommitdiff
path: root/user
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2001-06-10 22:40:08 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2001-06-10 22:40:08 +0000
commit5542047f024d84353ce404c0b8f24c383aab56d6 (patch)
treedd6c9a7e2e9576763c1ab978bb2c2cf7b633de02 /user
parent91aca23e0b48f035adbb2f7afd9e7082729dc828 (diff)
downloadapr-5542047f024d84353ce404c0b8f24c383aab56d6.tar.gz
Missed a return value, thanks to gstein for the catch.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61753 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'user')
-rw-r--r--user/win32/userinfo.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/user/win32/userinfo.c b/user/win32/userinfo.c
index 70390d0fd..098755e4d 100644
--- a/user/win32/userinfo.c
+++ b/user/win32/userinfo.c
@@ -186,6 +186,7 @@ APR_DECLARE(apr_status_t) apr_get_home_directory(char **dirname, const char *use
for (fixch = *dirname; *fixch; ++fixch)
if (*fixch == '\\')
*fixch = '/';
+ return APR_SUCCESS;
}
APR_DECLARE(apr_status_t) apr_get_userid(apr_uid_t *uid, apr_gid_t *gid,