You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2002/09/10 16:29:58 UTC

cvs commit: httpd-2.0/modules/aaa mod_authz_groupfile.c

trawick     2002/09/10 07:29:58

  Modified:    modules/aaa mod_authz_groupfile.c
  Log:
  fix a bad parameter to ap_log_rerror()
  
  Revision  Changes    Path
  1.2       +1 -1      httpd-2.0/modules/aaa/mod_authz_groupfile.c
  
  Index: mod_authz_groupfile.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/aaa/mod_authz_groupfile.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- mod_authz_groupfile.c	10 Sep 2002 00:15:39 -0000	1.1
  +++ mod_authz_groupfile.c	10 Sep 2002 14:29:58 -0000	1.2
  @@ -208,7 +208,7 @@
   
       if ((status = groups_for_user(r->pool, user, conf->groupfile,
                                     &grpstatus)) != APR_SUCCESS) {
  -         ap_log_rerror(APLOG_MARK, APLOG_ERR, NULL, r,
  +         ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r,
                          "Could not open group file: %s", conf->groupfile);
            return HTTP_INTERNAL_SERVER_ERROR;
       };