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

cvs commit: httpd-2.0/modules/aaa mod_auth_basic.c mod_authn_default.c mod_authz_dbm.c mod_authz_default.c mod_authz_groupfile.c mod_authz_user.c

wsanchez    2002/12/08 13:16:06

  Modified:    modules/aaa mod_auth_basic.c mod_authn_default.c
                        mod_authz_dbm.c mod_authz_default.c
                        mod_authz_groupfile.c mod_authz_user.c
  Log:
  there is some confusion with "yes" and "no" and "on" and "off"... ;-)
  
  Submitted by: Andre Malo <nd...@perlig.de>
  
  Revision  Changes    Path
  1.10      +1 -1      httpd-2.0/modules/aaa/mod_auth_basic.c
  
  Index: mod_auth_basic.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/aaa/mod_auth_basic.c,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- mod_auth_basic.c	8 Dec 2002 21:13:07 -0000	1.9
  +++ mod_auth_basic.c	8 Dec 2002 21:16:05 -0000	1.10
  @@ -155,7 +155,7 @@
       AP_INIT_FLAG("AuthBasicAuthoritative", ap_set_flag_slot,
                    (void *)APR_OFFSETOF(auth_basic_config_rec, authoritative),
                    OR_AUTHCFG,
  -                 "Set to 'no' to allow access control to be passed along to "
  +                 "Set to 'Off' to allow access control to be passed along to "
                    "lower modules if the UserID is not known to this module"),
       {NULL}
   };
  
  
  
  1.2       +2 -2      httpd-2.0/modules/aaa/mod_authn_default.c
  
  Index: mod_authn_default.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/aaa/mod_authn_default.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- mod_authn_default.c	10 Sep 2002 00:15:39 -0000	1.1
  +++ mod_authn_default.c	8 Dec 2002 21:16:05 -0000	1.2
  @@ -99,9 +99,9 @@
                    (void *)APR_OFFSETOF(authn_default_config_rec,
                                         authoritative),
                    OR_AUTHCFG,
  -                 "Set to 'no' to allow access control to be passed along to "
  +                 "Set to 'Off' to allow access control to be passed along to "
                    "lower modules if the UserID is not known to this module. "
  -		         "(default is yes)."),
  +		         "(default is On)."),
       {NULL}
   };
   
  
  
  
  1.3       +2 -2      httpd-2.0/modules/aaa/mod_authz_dbm.c
  
  Index: mod_authz_dbm.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/aaa/mod_authz_dbm.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- mod_authz_dbm.c	13 Sep 2002 23:56:37 -0000	1.2
  +++ mod_authz_dbm.c	8 Dec 2002 21:16:05 -0000	1.3
  @@ -151,9 +151,9 @@
        OR_AUTHCFG, "what type of DBM file the group file is"),
       AP_INIT_FLAG("AuthzDBMAuthoritative", ap_set_flag_slot,
        (void *)APR_OFFSETOF(authz_dbm_config_rec, authoritative),
  -     OR_AUTHCFG, "Set to 'no' to allow access control to be passed along to "
  +     OR_AUTHCFG, "Set to 'Off' to allow access control to be passed along to "
        "lower modules, if the group required is not found or empty, or the user "
  -     " is not in the required groups. (default is yes.)"),
  +     " is not in the required groups. (default is On.)"),
       {NULL}
   };
   
  
  
  
  1.2       +2 -2      httpd-2.0/modules/aaa/mod_authz_default.c
  
  Index: mod_authz_default.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/aaa/mod_authz_default.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- mod_authz_default.c	10 Sep 2002 00:15:39 -0000	1.1
  +++ mod_authz_default.c	8 Dec 2002 21:16:05 -0000	1.2
  @@ -98,8 +98,8 @@
       AP_INIT_FLAG("AccessAuthoritative", ap_set_flag_slot,
                    (void *)APR_OFFSETOF(authz_default_config_rec, authoritative),
                    OR_AUTHCFG,
  -                 "Set to 'no' to allow access control to be passed along to "
  -                 "lower modules. (default is yes.)"),
  +                 "Set to 'Off' to allow access control to be passed along to "
  +                 "lower modules. (default is On.)"),
       {NULL}
   };
   
  
  
  
  1.5       +2 -2      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.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- mod_authz_groupfile.c	13 Sep 2002 23:59:58 -0000	1.4
  +++ mod_authz_groupfile.c	8 Dec 2002 21:16:05 -0000	1.5
  @@ -130,9 +130,9 @@
                    (void *)APR_OFFSETOF(authz_groupfile_config_rec,
                                         authoritative),
                    OR_AUTHCFG,
  -                 "Set to 'no' to allow access control to be passed along to "
  +                 "Set to 'Off' to allow access control to be passed along to "
                    "lower modules if the 'require group' fails. (default is "
  -                 "no)."),
  +                 "On)."),
       {NULL}
   };
   
  
  
  
  1.2       +2 -2      httpd-2.0/modules/aaa/mod_authz_user.c
  
  Index: mod_authz_user.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/aaa/mod_authz_user.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- mod_authz_user.c	10 Sep 2002 00:15:39 -0000	1.1
  +++ mod_authz_user.c	8 Dec 2002 21:16:05 -0000	1.2
  @@ -97,9 +97,9 @@
       AP_INIT_FLAG("AuthzUserAuthoritative", ap_set_flag_slot,
                    (void *)APR_OFFSETOF(authz_user_config_rec, authoritative),
                    OR_AUTHCFG,
  -                 "Set to 'no' to allow access control to be passed along to "
  +                 "Set to 'Off' to allow access control to be passed along to "
                    "lower modules if the 'require user' or 'require valid-user' "
  -                 "statement is not met. (default: yes)."),
  +                 "statement is not met. (default: On)."),
       {NULL}
   };