]> granicus.if.org Git - apache/commitdiff
Update for APR rename of apr_get_groupname to apr_group_name_get.
authorSander Striker <striker@apache.org>
Mon, 22 Apr 2002 10:27:01 +0000 (10:27 +0000)
committerSander Striker <striker@apache.org>
Mon, 22 Apr 2002 10:27:01 +0000 (10:27 +0000)
Submitted by: Thom May <thom@planetarytramp.net>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94752 13f79535-47bb-0310-9956-ffa450edef68

modules/mappers/mod_rewrite.c

index 3471f9a4e4164ac7c4e9f701c626e392f51a7980..6ad33aa81202e294525d8c770e6825622e212657 100644 (file)
@@ -3621,7 +3621,7 @@ static char *lookup_variable(request_rec *r, char *var)
     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);
         }
     }