diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2013-08-27 13:36:41 -0400 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-08-28 11:00:03 +0200 |
commit | dcc6877aa2e2dd63a9dc9c411a9c58feaeb36b9a (patch) | |
tree | fda3c24e3ec4be05c86b6271e297e8fc0f4cd6a1 /src/util | |
parent | a524b03792dc8f8dae32bba5a2af8532bc751e86 (diff) | |
download | sssd-dcc6877aa2e2dd63a9dc9c411a9c58feaeb36b9a.tar.gz sssd-dcc6877aa2e2dd63a9dc9c411a9c58feaeb36b9a.tar.bz2 sssd-dcc6877aa2e2dd63a9dc9c411a9c58feaeb36b9a.zip |
krb5: Fetch ccname template from krb5.conf
In order to use the same defaults in all system daemons that needs to know how
to generate or search for ccaches we introduce ode here to take advantage of
the new option called default_ccache_name provided by libkrb5.
If set this variable we establish the same default for all programs that surce
it out of krb5.conf therefore providing a consistent experience across the
system.
Related:
https://fedorahosted.org/sssd/ticket/2036
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/util_errors.c | 1 | ||||
-rw-r--r-- | src/util/util_errors.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/util/util_errors.c b/src/util/util_errors.c index 015c5aca..e39e1587 100644 --- a/src/util/util_errors.c +++ b/src/util/util_errors.c @@ -48,6 +48,7 @@ struct err_string error_to_str[] = { { "Dynamic DNS update failed" }, /* ERR_DYNDNS_FAILED */ { "Dynamic DNS update timed out" }, /* ERR_DYNDNS_TIMEOUT */ { "Dynamic DNS update not possible while offline" }, /* ERR_DYNDNS_OFFLINE */ + { "Entry not found" }, /* ERR_NOT_FOUND */ }; diff --git a/src/util/util_errors.h b/src/util/util_errors.h index ca447282..8580d6ba 100644 --- a/src/util/util_errors.h +++ b/src/util/util_errors.h @@ -70,6 +70,7 @@ enum sssd_errors { ERR_DYNDNS_FAILED, ERR_DYNDNS_TIMEOUT, ERR_DYNDNS_OFFLINE, + ERR_NOT_FOUND, ERR_LAST /* ALWAYS LAST */ }; |