From: Wilfredo Sanchez Date: Sun, 8 Dec 2002 21:16:05 +0000 (+0000) Subject: there is some confusion with "yes" and "no" and "on" and "off"... ;-) X-Git-Tag: pre_ajp_proxy~2488 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c4eb2f83d489939506d9c6cf608bd53edf706e84;p=apache there is some confusion with "yes" and "no" and "on" and "off"... ;-) Submitted by: Andre Malo git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97803 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/aaa/mod_auth_basic.c b/modules/aaa/mod_auth_basic.c index 62251cddce..37db7fa089 100644 --- a/modules/aaa/mod_auth_basic.c +++ b/modules/aaa/mod_auth_basic.c @@ -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} }; diff --git a/modules/aaa/mod_authn_default.c b/modules/aaa/mod_authn_default.c index fa6a1896f1..2fbc0a7175 100644 --- a/modules/aaa/mod_authn_default.c +++ b/modules/aaa/mod_authn_default.c @@ -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} }; diff --git a/modules/aaa/mod_authz_dbm.c b/modules/aaa/mod_authz_dbm.c index fa95303b6e..1601514021 100644 --- a/modules/aaa/mod_authz_dbm.c +++ b/modules/aaa/mod_authz_dbm.c @@ -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} }; diff --git a/modules/aaa/mod_authz_default.c b/modules/aaa/mod_authz_default.c index 4fb5e66965..baaf16302f 100644 --- a/modules/aaa/mod_authz_default.c +++ b/modules/aaa/mod_authz_default.c @@ -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} }; diff --git a/modules/aaa/mod_authz_groupfile.c b/modules/aaa/mod_authz_groupfile.c index 3be7eab722..1be235d884 100644 --- a/modules/aaa/mod_authz_groupfile.c +++ b/modules/aaa/mod_authz_groupfile.c @@ -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} }; diff --git a/modules/aaa/mod_authz_user.c b/modules/aaa/mod_authz_user.c index a2befbd881..c9e0780c2e 100644 --- a/modules/aaa/mod_authz_user.c +++ b/modules/aaa/mod_authz_user.c @@ -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} };