diff options
-rw-r--r-- | source3/libsmb/clikrb5.c | 2 | ||||
-rw-r--r-- | source3/printing/nt_printing.c | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/source3/libsmb/clikrb5.c b/source3/libsmb/clikrb5.c index da3ef6a0e48..4943f67b776 100644 --- a/source3/libsmb/clikrb5.c +++ b/source3/libsmb/clikrb5.c @@ -426,7 +426,7 @@ static BOOL ads_cleanup_expired_creds(krb5_context context, use memory ccaches, and a FILE one probably means that we're using creds obtained outside of our exectuable */ - if (strequal(cc_type, "KCM") || strequal(cc_type, "FILE")) { + if (strequal(cc_type, "FILE")) { DEBUG(5, ("ads_cleanup_expired_creds: We do not remove creds from a %s ccache\n", cc_type)); return False; } diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 63f722c9b59..727d226e2a5 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -3125,11 +3125,7 @@ WERROR nt_printer_publish(Printer_entry *print_hnd, int snum, int action) win_rc = WERR_SERVER_UNAVAILABLE; goto done; } -#ifdef HAVE_KCM - setenv(KRB5_ENV_CCNAME, "KCM:SYSTEM", 1); -#else setenv(KRB5_ENV_CCNAME, "MEMORY:prtpub_cache", 1); -#endif SAFE_FREE(ads->auth.password); ads->auth.password = secrets_fetch_machine_password(lp_workgroup(), NULL, NULL); |