]> granicus.if.org Git - apache/commitdiff
there is some confusion with "yes" and "no" and "on" and "off"... ;-)
authorWilfredo Sanchez <wsanchez@apache.org>
Sun, 8 Dec 2002 21:16:05 +0000 (21:16 +0000)
committerWilfredo Sanchez <wsanchez@apache.org>
Sun, 8 Dec 2002 21:16:05 +0000 (21:16 +0000)
Submitted by: Andre Malo <nd@perlig.de>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97803 13f79535-47bb-0310-9956-ffa450edef68

modules/aaa/mod_auth_basic.c
modules/aaa/mod_authn_default.c
modules/aaa/mod_authz_dbm.c
modules/aaa/mod_authz_default.c
modules/aaa/mod_authz_groupfile.c
modules/aaa/mod_authz_user.c

index 62251cddcee4f9215e59812a1c2091475771b127..37db7fa0897ba5d72e5b9be7c2bd0a2803fea252 100644 (file)
@@ -155,7 +155,7 @@ static const command_rec auth_basic_cmds[] =
     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}
 };
index fa6a1896f166ab6d056cacb729e6733c720df44c..2fbc0a7175f206c56c956c9021c4dd71d2041dd5 100644 (file)
@@ -99,9 +99,9 @@ static const command_rec authn_default_cmds[] =
                  (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}
 };
 
index fa95303b6e3b848ffcf341c2574a5852e7992244..1601514021bedca94690462dfbde47605bb22d08 100644 (file)
@@ -151,9 +151,9 @@ static const command_rec authz_dbm_cmds[] =
      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}
 };
 
index 4fb5e669650fb70f5f272199ec2dc4a82fde9269..baaf16302f21e18d4ab1dc327eb8f986cab9080e 100644 (file)
@@ -98,8 +98,8 @@ static const command_rec authz_default_cmds[] =
     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}
 };
 
index 3be7eab722a228f2d3f75e7cc8641cafb2db8203..1be235d884e8cd96ee9271468ec84eee7992fdf6 100644 (file)
@@ -130,9 +130,9 @@ static const command_rec authz_groupfile_cmds[] =
                  (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}
 };
 
index a2befbd8813a397be35b490e7cd0878fc9a40307..c9e0780c2e445d76bc18ae97bac654bec5977a58 100644 (file)
@@ -97,9 +97,9 @@ static const command_rec authz_user_cmds[] =
     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}
 };