summaryrefslogtreecommitdiff
path: root/source3/librpc/crypto/gse_krb5.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/librpc/crypto/gse_krb5.c')
-rw-r--r--source3/librpc/crypto/gse_krb5.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/librpc/crypto/gse_krb5.c b/source3/librpc/crypto/gse_krb5.c
index 999a1d18c47..2ee075da15e 100644
--- a/source3/librpc/crypto/gse_krb5.c
+++ b/source3/librpc/crypto/gse_krb5.c
@@ -431,9 +431,9 @@ static krb5_error_code fill_mem_keytab_from_system_keytab(krb5_context krbctx,
ZERO_STRUCT(kt_entry);
ZERO_STRUCT(kt_cursor);
- ret = smb_krb5_open_keytab(krbctx, NULL, false, &keytab);
+ ret = smb_krb5_kt_open(krbctx, NULL, false, &keytab);
if (ret) {
- DEBUG(1, (__location__ ": smb_krb5_open_keytab failed (%s)\n",
+ DEBUG(1, ("smb_krb5_kt_open failed (%s)\n",
error_message(ret)));
goto out;
}
@@ -528,10 +528,10 @@ static krb5_error_code fill_mem_keytab_from_dedicated_keytab(krb5_context krbctx
krb5_kt_cursor kt_cursor;
krb5_keytab_entry kt_entry;
- ret = smb_krb5_open_keytab(krbctx, lp_dedicated_keytab_file(),
+ ret = smb_krb5_kt_open(krbctx, lp_dedicated_keytab_file(),
false, &keytab);
if (ret) {
- DEBUG(1, (__location__ ": smb_krb5_open_keytab failed (%s)\n",
+ DEBUG(1, ("smb_krb5_kt_open failed (%s)\n",
error_message(ret)));
return ret;
}