summaryrefslogtreecommitdiff
path: root/user/win32
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-06-08 20:04:26 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-06-08 20:04:26 +0000
commita8f7ab98e29f2b17cdf7d94b6c6c8efed0e24c17 (patch)
tree2aaf9b88c657b57e87e561e34894ca39f016450b /user/win32
parent963e35a5e8b11f8490f81335869deb721103606f (diff)
downloadlibapr-a8f7ab98e29f2b17cdf7d94b6c6c8efed0e24c17.tar.gz
Revert bogusness by providing proper stubs for functions that existed
since the first indirect APR release [APACHE_2_0_35]. Fortunately, these appear to be the only bogusness detected between _35 and _36, and _37 must follow suit with stubs for newly deprecated symbols. Of course all stubs fall out with 1.0.0, which I picture Apache adopting with stronger version controls in APACHE_2_1_x, but we will see what concensus each project adopts between now and then. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63475 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'user/win32')
-rw-r--r--user/win32/groupinfo.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/user/win32/groupinfo.c b/user/win32/groupinfo.c
index 25c51af31..c0a2af4a3 100644
--- a/user/win32/groupinfo.c
+++ b/user/win32/groupinfo.c
@@ -136,3 +136,10 @@ APR_DECLARE(apr_status_t) apr_compare_groups(apr_gid_t left, apr_gid_t right)
#endif
return APR_SUCCESS;
}
+
+/* Deprecated */
+APR_DECLARE(apr_status_t) apr_get_groupname(char **groupname,
+ apr_gid_t groupid, apr_pool_t *p)
+{
+ return apr_group_name_get(groupname, groupid, p);
+}