Hi,
patch to go with the one to apr.
renames apr_get_groupname to apr_group_name_get
Cheers,
--
Thom May -> [EMAIL PROTECTED]
US elections:
For those of you fearing that the rest of the world might be making fun of the US
because of this: Rest assured, we are.
Index: modules/mappers/mod_rewrite.c
===================================================================
RCS file: /home/cvspublic/httpd-2.0/modules/mappers/mod_rewrite.c,v
retrieving revision 1.106
diff -u -u -r1.106 mod_rewrite.c
--- modules/mappers/mod_rewrite.c 13 Apr 2002 12:02:37 -0000 1.106
+++ modules/mappers/mod_rewrite.c 15 Apr 2002 12:33:23 -0000
@@ -3621,7 +3621,7 @@
else if (strcasecmp(var, "SCRIPT_GROUP") == 0) {
result = "<unknown>";
if (r->finfo.valid & APR_FINFO_GROUP) {
- apr_get_groupname((char **)&result, r->finfo.group, r->pool);
+ apr_group_name_get((char **)&result, r->finfo.group, r->pool);
}
}