Mailing List Archive

cvs commit: apache/src CHANGES mod_auth.c mod_auth_db.c mod_auth_dbm.c
dgaudet 97/04/24 03:16:57

Modified: src CHANGES mod_auth.c mod_auth_db.c mod_auth_dbm.c
Log:
Corrected spelling of authoritative.

Submitted by: Marc Slemko
Reviewed by: Dean, Roy, Paul S.

Revision Changes Path
1.243 +3 -0 apache/src/CHANGES

Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache/src/CHANGES,v
retrieving revision 1.242
retrieving revision 1.243
diff -C3 -r1.242 -r1.243
*** CHANGES 1997/04/22 04:28:09 1.242
--- CHANGES 1997/04/24 10:16:54 1.243
***************
*** 1,5 ****
--- 1,8 ----
Changes with Apache 1.2

+ *) Corrected spelling of "authoritative". AuthDBAuthoratative became
+ AuthDBAuthoritative. [Marc Slemko] PR#420
+
*) MaxClients should be at least 1. [Lars Eilebrecht] PR#375

*) The default handler now logs invalid methods or URIs (i.e. PUT on an



1.15 +2 -2 apache/src/mod_auth.c

Index: mod_auth.c
===================================================================
RCS file: /export/home/cvs/apache/src/mod_auth.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -C3 -r1.14 -r1.15
*** mod_auth.c 1997/03/29 01:48:19 1.14
--- mod_auth.c 1997/04/24 10:16:54 1.15
***************
*** 57,66 ****
*
* Adapted to Apache by rst.
*
! * dirkx - Added Authoratative control to allow passing on to lower
* modules if and only if the user-id is not known to this
* module. A known user with a faulty or absent password still
! * causes an AuthRequired. The default is 'Authoratative', i.e.
* no control is passed along.
*/

--- 57,66 ----
*
* Adapted to Apache by rst.
*
! * dirkx - Added Authoritative control to allow passing on to lower
* modules if and only if the user-id is not known to this
* module. A known user with a faulty or absent password still
! * causes an AuthRequired. The default is 'Authoritative', i.e.
* no control is passed along.
*/




1.12 +3 -3 apache/src/mod_auth_db.c

Index: mod_auth_db.c
===================================================================
RCS file: /export/home/cvs/apache/src/mod_auth_db.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -C3 -r1.11 -r1.12
*** mod_auth_db.c 1997/03/07 14:15:38 1.11
--- mod_auth_db.c 1997/04/24 10:16:55 1.12
***************
*** 73,82 ****
* mapped to Berkeley DB. You can use either mod_auth_dbm or
* mod_auth_db. The latter makes it more obvious that it's Berkeley.
*
! * dirkx - Added Authoratative control to allow passing on to lower
* modules if and only if the user-id is not known to this
* module. A known user with a faulty or absent password still
! * causes an AuthRequired. The default is 'Authoratative', i.e.
* no control is passed along.
*/

--- 73,82 ----
* mapped to Berkeley DB. You can use either mod_auth_dbm or
* mod_auth_db. The latter makes it more obvious that it's Berkeley.
*
! * dirkx - Added Authoritative control to allow passing on to lower
* modules if and only if the user-id is not known to this
* module. A known user with a faulty or absent password still
! * causes an AuthRequired. The default is 'Authoritative', i.e.
* no control is passed along.
*/

***************
*** 125,131 ****
{ "AuthGroupFile", set_db_slot,
(void*)XtOffsetOf(db_auth_config_rec, auth_dbgrpfile),
OR_AUTHCFG, TAKE12, NULL },
! { "AuthDBAuthoratative", set_flag_slot,
(void*)XtOffsetOf(db_auth_config_rec, auth_dbauthoritative),
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" },
--- 125,131 ----
{ "AuthGroupFile", set_db_slot,
(void*)XtOffsetOf(db_auth_config_rec, auth_dbgrpfile),
OR_AUTHCFG, TAKE12, NULL },
! { "AuthDBAuthoritative", set_flag_slot,
(void*)XtOffsetOf(db_auth_config_rec, auth_dbauthoritative),
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" },



1.15 +2 -2 apache/src/mod_auth_dbm.c

Index: mod_auth_dbm.c
===================================================================
RCS file: /export/home/cvs/apache/src/mod_auth_dbm.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -C3 -r1.14 -r1.15
*** mod_auth_dbm.c 1997/03/07 14:15:38 1.14
--- mod_auth_dbm.c 1997/04/24 10:16:55 1.15
***************
*** 57,66 ****
*
* Adapted to Apache by rst.
*
! * dirkx - Added Authoratative control to allow passing on to lower
* modules if and only if the user-id is not known to this
* module. A known user with a faulty or absent password still
! * causes an AuthRequired. The default is 'Authoratative', i.e.
* no control is passed along.
*/

--- 57,66 ----
*
* Adapted to Apache by rst.
*
! * dirkx - Added Authoritative control to allow passing on to lower
* modules if and only if the user-id is not known to this
* module. A known user with a faulty or absent password still
! * causes an AuthRequired. The default is 'Authoritative', i.e.
* no control is passed along.
*/