summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-01-28 01:26:19 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-01-28 01:26:19 +0000
commitb511b4608c4a32d4df066a232e5f4799f8971a97 (patch)
tree70bae0d7f41d73d6b9cadc952b1dcaa57bfcebc7
parent24a3f1c20414e0ec2799d6573b1e5f5fa5186cab (diff)
downloadlibapr-b511b4608c4a32d4df066a232e5f4799f8971a97.tar.gz
Enable for user/group win32 (as PSIDs) and fix a small typo
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61139 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/apr.hw2
-rw-r--r--include/apr_user.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/apr.hw b/include/apr.hw
index 5119a4c08..0aa15c697 100644
--- a/include/apr.hw
+++ b/include/apr.hw
@@ -186,7 +186,7 @@
#define APR_HAS_OTHER_CHILD 0
#define APR_HAS_DSO 1
#define APR_HAS_UNICODE_FS 1
-#define APR_HAS_USER 0
+#define APR_HAS_USER 1
#define APR_HAS_LARGE_FILES 1
/* Not all platforms have a real INADDR_NONE. This macro replaces INADDR_NONE
diff --git a/include/apr_user.h b/include/apr_user.h
index a69719059..5fea54441 100644
--- a/include/apr_user.h
+++ b/include/apr_user.h
@@ -114,10 +114,10 @@ APR_DECLARE(apr_status_t) apr_get_home_directory(char **dirname, const char *use
* @param dirname Pointer to new string containing group name (on output)
* @param userid The groupid
* @param p The pool from which to allocate the string
- * @deffunc apr_status_t apr_get_groupname(char **groupname, apr_gid_t userid, apr_pool_t *p)
+ * @deffunc apr_status_t apr_get_groupname(char **groupname, apr_gid_t userid, apr_pool_t *p);
* @tip This function is available only if APR_HAS_USER is defined.
*/
-APR_DECLARE(apr_status_t) apr_get_groupname(char **groupname, apr_gid_t groupid, apr_pool_t *p)
+APR_DECLARE(apr_status_t) apr_get_groupname(char **groupname, apr_gid_t groupid, apr_pool_t *p);
#endif /* ! APR_HAS_USER */