2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 14:25:15 +00:00

cannot -> "unable to" in warning/error messages

This commit is contained in:
Todd C. Miller
2011-05-18 12:41:06 -04:00
parent 6f8cd91928
commit fce0b906eb
12 changed files with 21 additions and 21 deletions

View File

@@ -447,11 +447,11 @@ sudo_ldap_parse_uri(const struct ldap_config_list_str *uri_list)
if (nldaps != 0) {
if (nldap != 0) {
warningx(_("cannot mix ldap and ldaps URIs"));
warningx(_("unable to mix ldap and ldaps URIs"));
goto done;
}
if (ldap_conf.ssl_mode == SUDO_LDAP_STARTTLS) {
warningx(_("cannot mix ldaps and starttls"));
warningx(_("unable to mix ldaps and starttls"));
goto done;
}
ldap_conf.ssl_mode = SUDO_LDAP_SSL;