summaryrefslogtreecommitdiff
path: root/user
diff options
context:
space:
mode:
authorSander Striker <striker@apache.org>2002-04-22 10:24:41 +0000
committerSander Striker <striker@apache.org>2002-04-22 10:24:41 +0000
commit2de839a6f970bb10ed5b33b848e6322159a11f5c (patch)
treead917e543f8cfafbaad04da85a722f5c1afdf62f /user
parent0b18739ce991ad66b6322ea169dc84ccc34d95fc (diff)
downloadapr-2de839a6f970bb10ed5b33b848e6322159a11f5c.tar.gz
Rename apr_get_groupname to apr_group_name_get.
Submitted by: Thom May <thom@planetarytramp.net> git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63292 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'user')
-rw-r--r--user/netware/groupinfo.c2
-rw-r--r--user/unix/groupinfo.c2
-rw-r--r--user/win32/groupinfo.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/user/netware/groupinfo.c b/user/netware/groupinfo.c
index bd209434e..530f25881 100644
--- a/user/netware/groupinfo.c
+++ b/user/netware/groupinfo.c
@@ -66,7 +66,7 @@
#include <unistd.h> /* for _POSIX_THREAD_SAFE_FUNCTIONS */
#endif
-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_ENOTIMPL;
}
diff --git a/user/unix/groupinfo.c b/user/unix/groupinfo.c
index 97c245a0a..a393a911a 100644
--- a/user/unix/groupinfo.c
+++ b/user/unix/groupinfo.c
@@ -66,7 +66,7 @@
#include <unistd.h> /* for _POSIX_THREAD_SAFE_FUNCTIONS */
#endif
-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)
{
struct group *gr;
#ifndef BEOS
diff --git a/user/win32/groupinfo.c b/user/win32/groupinfo.c
index 611f744e7..edc2feb54 100644
--- a/user/win32/groupinfo.c
+++ b/user/win32/groupinfo.c
@@ -100,7 +100,7 @@ APR_DECLARE(apr_status_t) apr_get_groupid(apr_gid_t *gid,
return APR_SUCCESS;
}
-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)
{
SID_NAME_USE type;
char name[MAX_PATH], domain[MAX_PATH];