randy       97/08/31 20:34:34

  Modified:    src/modules/standard mod_auth_db.c
  Log:
  Correct some mistakes.
  
  Revision  Changes    Path
  1.22      +4 -2      apachen/src/modules/standard/mod_auth_db.c
  
  Index: mod_auth_db.c
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/modules/standard/mod_auth_db.c,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- mod_auth_db.c     1997/08/31 22:24:49     1.21
  +++ mod_auth_db.c     1997/09/01 03:34:33     1.22
  @@ -259,7 +259,8 @@
                  ap_snprintf(errstr, sizeof(errstr), 
                           "user %s not in DB group file %s",
                           user, sec->auth_dbgrpfile);
  -            aplog_error(APLOG_MARK, APLOG_ERR, "%s: %s", errstr, 
r->filename);
  +            aplog_error(APLOG_MARK, APLOG_ERR, r->server,
  +                        "%s: %s", errstr, r->filename);
               note_basic_auth_failure(r);
               return AUTH_REQUIRED;
              }
  @@ -275,7 +276,8 @@
              }
              ap_snprintf(errstr, sizeof(errstr), 
                       "user %s not in right group",user);
  -        aplog_error(APLOG_MARK, APLOG_ERR, "%s: %s", errstr, r->filename);
  +        aplog_error(APLOG_MARK, APLOG_ERR, r->server,
  +                    "%s: %s", errstr, r->filename);
              note_basic_auth_failure(r);
           return AUTH_REQUIRED;
          }
  
  
  

Reply via email to