summaryrefslogtreecommitdiffstats
path: root/src/util/sss_krb5.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/sss_krb5.c')
-rw-r--r--src/util/sss_krb5.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/util/sss_krb5.c b/src/util/sss_krb5.c
index ddd79be8..3311ef54 100644
--- a/src/util/sss_krb5.c
+++ b/src/util/sss_krb5.c
@@ -913,3 +913,13 @@ cleanup:
return ret;
#endif /* HAVE_KRB5_UNPARSE_NAME_FLAGS */
}
+
+void sss_krb5_get_init_creds_opt_set_canonicalize(krb5_get_init_creds_opt *opts,
+ int canonicalize)
+{
+#ifdef HAVE_KRB5_GET_INIT_CREDS_OPT_SET_CANONICALIZE
+ return krb5_get_init_creds_opt_set_canonicalize(opts, canonicalize);
+#else
+ DEBUG(SSSDBG_OP_FAILURE, ("Kerberos principal canonicalization is not avaliable!\n"));
+#endif
+}