summaryrefslogtreecommitdiff
path: root/source3/libnet/libnet_keytab.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-06-30 10:29:15 +0200
committerGünther Deschner <gd@samba.org>2008-06-30 12:38:32 +0200
commit52635c6f58edaa0e948851fd3f06b95d05ab10a4 (patch)
treeebdf23dfac03cf7a60c6c02829d6100ad563a319 /source3/libnet/libnet_keytab.c
parent7b3541f39bda595631188787fca989365478ef33 (diff)
downloadsamba-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/libnet_keytab.c')
-rw-r--r--source3/libnet/libnet_keytab.c14
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"));