diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2010-06-15 10:35:25 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-06-16 16:22:50 -0400 |
commit | 564d213ea3f0957a3337cd0f1d63e766e16ce6d8 (patch) | |
tree | b8adcbffc18f814c9cbcb3bf23ced557836f2ac2 /src/providers/ldap | |
parent | b45080c6697297bc85edc6d492dbaab45cb7c4f0 (diff) | |
download | sssd-564d213ea3f0957a3337cd0f1d63e766e16ce6d8.tar.gz sssd-564d213ea3f0957a3337cd0f1d63e766e16ce6d8.tar.bz2 sssd-564d213ea3f0957a3337cd0f1d63e766e16ce6d8.zip |
Standardize on correct spelling of "principal" for krb5
https://fedorahosted.org/sssd/ticket/542
Diffstat (limited to 'src/providers/ldap')
-rw-r--r-- | src/providers/ldap/sdap_async_accounts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/ldap/sdap_async_accounts.c b/src/providers/ldap/sdap_async_accounts.c index 46c622d4..2e223e1e 100644 --- a/src/providers/ldap/sdap_async_accounts.c +++ b/src/providers/ldap/sdap_async_accounts.c @@ -208,7 +208,7 @@ static int sdap_save_user(TALLOC_CTX *memctx, goto fail; } if (el->num_values == 0) { - DEBUG(7, ("User principle is not available for [%s].\n", name)); + DEBUG(7, ("User principal is not available for [%s].\n", name)); } else { upn = talloc_strdup(user_attrs, (const char*) el->values[0].data); if (!upn) { @@ -218,7 +218,7 @@ static int sdap_save_user(TALLOC_CTX *memctx, if (dp_opt_get_bool(opts->basic, SDAP_FORCE_UPPER_CASE_REALM)) { make_realm_upper_case(upn); } - DEBUG(7, ("Adding user principle [%s] to attributes of [%s].\n", + DEBUG(7, ("Adding user principal [%s] to attributes of [%s].\n", upn, name)); ret = sysdb_attrs_add_string(user_attrs, SYSDB_UPN, upn); if (ret) { |