diff options
author | Günther Deschner <gd@samba.org> | 2008-06-30 10:29:15 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-06-30 12:38:32 +0200 |
commit | 52635c6f58edaa0e948851fd3f06b95d05ab10a4 (patch) | |
tree | ebdf23dfac03cf7a60c6c02829d6100ad563a319 /source3/libnet | |
parent | 7b3541f39bda595631188787fca989365478ef33 (diff) | |
download | samba-52635c6f58edaa0e948851fd3f06b95d05ab10a4.tar.gz samba-52635c6f58edaa0e948851fd3f06b95d05ab10a4.tar.bz2 samba-52635c6f58edaa0e948851fd3f06b95d05ab10a4.zip |
kerberos: rename smb_krb5_kt_add_entry to smb_krb5_kt_add_entry_ext.
Guenther
(This used to be commit 48600a0019d70d22574cf08e8fe19d44cc332a0f)
Diffstat (limited to 'source3/libnet')
-rw-r--r-- | source3/libnet/libnet_keytab.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/libnet/libnet_keytab.c b/source3/libnet/libnet_keytab.c index 90595e76dd..faa491471e 100644 --- a/source3/libnet/libnet_keytab.c +++ b/source3/libnet/libnet_keytab.c @@ -120,13 +120,13 @@ krb5_error_code libnet_keytab_add(struct libnet_keytab_context *ctx) password.data = (char *)entry->password.data; password.length = entry->password.length; - ret = smb_krb5_kt_add_entry(ctx->context, - ctx->keytab, - entry->kvno, - entry->principal, - enctypes, - password, - true); + ret = smb_krb5_kt_add_entry_ext(ctx->context, + ctx->keytab, + entry->kvno, + entry->principal, + enctypes, + password, + true); if (ret) { DEBUG(1,("libnet_keytab_add: " "Failed to add entry to keytab file\n")); |