You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2002/04/22 12:27:02 UTC

cvs commit: httpd-2.0/modules/mappers mod_rewrite.c

striker     02/04/22 03:27:01

  Modified:    modules/mappers mod_rewrite.c
  Log:
  Update for APR rename of apr_get_groupname to apr_group_name_get.
  
  Submitted by: Thom May <th...@planetarytramp.net>
  
  Revision  Changes    Path
  1.107     +1 -1      httpd-2.0/modules/mappers/mod_rewrite.c
  
  Index: mod_rewrite.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/mappers/mod_rewrite.c,v
  retrieving revision 1.106
  retrieving revision 1.107
  diff -u -r1.106 -r1.107
  --- mod_rewrite.c	13 Apr 2002 12:02:37 -0000	1.106
  +++ mod_rewrite.c	22 Apr 2002 10:27:01 -0000	1.107
  @@ -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);
           }
       }