You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Roy Fielding <fi...@hyperreal.com> on 1997/03/29 02:48:21 UTC

cvs commit: apache/src CHANGES mod_auth.c

fielding    97/03/28 17:48:21

  Modified:    src       CHANGES mod_auth.c
  Log:
  When the *Authoritative directives were added a few weeks ago,
  mod_auth.c got loaded with mod_auth_msql.c's setting by mistake.
  
  Submitted by: Ken Coar, PR #246
  Reviewed by: Roy Fielding
  
  Revision  Changes    Path
  1.213     +2 -0      apache/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.212
  retrieving revision 1.213
  diff -C3 -r1.212 -r1.213
  *** CHANGES	1997/03/29 01:42:32	1.212
  --- CHANGES	1997/03/29 01:48:19	1.213
  ***************
  *** 1,5 ****
  --- 1,7 ----
    Changes with Apache 1.2b8
    
  +   *) Fix typo in command definition of AuthAuthoritative. [Ken Coar] PR #246
  + 
      *) Defined HAVE_SHMGET for shared memory on Linux.  [Dean Gaudet]
    
      *) Report extra info from errno with many errors that cause httpd to exit.
  
  
  
  1.14      +1 -1      apache/src/mod_auth.c
  
  Index: mod_auth.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_auth.c,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -C3 -r1.13 -r1.14
  *** mod_auth.c	1997/03/07 14:15:37	1.13
  --- mod_auth.c	1997/03/29 01:48:19	1.14
  ***************
  *** 102,108 ****
      (void*)XtOffsetOf(auth_config_rec,auth_pwfile), OR_AUTHCFG, TAKE12, NULL },
    { "AuthGroupFile", set_auth_slot,
      (void*)XtOffsetOf(auth_config_rec,auth_grpfile), OR_AUTHCFG, TAKE12, NULL },
  ! { "Auth_MSQL_Authoritative", set_flag_slot,
      (void*)XtOffsetOf(auth_config_rec,auth_authoritative), 
        OR_AUTHCFG, FLAG, 
       "Set to 'no' to allow access control to be passed along to lower modules if the UserID is not known to this module" },
  --- 102,108 ----
      (void*)XtOffsetOf(auth_config_rec,auth_pwfile), OR_AUTHCFG, TAKE12, NULL },
    { "AuthGroupFile", set_auth_slot,
      (void*)XtOffsetOf(auth_config_rec,auth_grpfile), OR_AUTHCFG, TAKE12, NULL },
  ! { "AuthAuthoritative", set_flag_slot,
      (void*)XtOffsetOf(auth_config_rec,auth_authoritative), 
        OR_AUTHCFG, FLAG, 
       "Set to 'no' to allow access control to be passed along to lower modules if the UserID is not known to this module" },