summaryrefslogtreecommitdiff
path: root/user/win32/groupinfo.c
diff options
context:
space:
mode:
authorthommay <thommay@13f79535-47bb-0310-9956-ffa450edef68>2002-11-20 19:06:46 +0000
committerthommay <thommay@13f79535-47bb-0310-9956-ffa450edef68>2002-11-20 19:06:46 +0000
commitfd60befe1b0452d8c1ecafa75be5f610e89cdac0 (patch)
tree74127475ce76481ca0d85eea2f3b7a422189b786 /user/win32/groupinfo.c
parent8e4978111f2ce3aca04e9723c423d30a8f5fec5e (diff)
downloadlibapr-fd60befe1b0452d8c1ecafa75be5f610e89cdac0.tar.gz
apr_get_groupname() is declared twice in apr/user/win32/groupinfo.c
the second one should have been apr_group_name_get() Submitted by: Sebastian Bergmann (lists@sebastian-bergmann.de) Reviewed by: Thom May git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64048 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'user/win32/groupinfo.c')
-rw-r--r--user/win32/groupinfo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/user/win32/groupinfo.c b/user/win32/groupinfo.c
index 457a9063f..9d35855d7 100644
--- a/user/win32/groupinfo.c
+++ b/user/win32/groupinfo.c
@@ -144,10 +144,10 @@ APR_DECLARE(apr_status_t) apr_get_groupname(char **groupname,
return apr_gid_name_get(groupname, groupid, p);
}
-APR_DECLARE(apr_status_t) apr_get_groupname(char **groupname,
- apr_gid_t groupid, apr_pool_t *p)
+APR_DECLARE(apr_status_t) apr_group_name_get(char **groupname,
+ apr_gid_t groupid, apr_pool_t *p)
{
- return apr_group_name_get(groupname, groupid, p);
+ return apr_gid_name_get(groupname, groupid, p);
}
APR_DECLARE(apr_status_t) apr_get_groupid(apr_gid_t *gid,