From 52635c6f58edaa0e948851fd3f06b95d05ab10a4 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 30 Jun 2008 10:29:15 +0200 Subject: kerberos: rename smb_krb5_kt_add_entry to smb_krb5_kt_add_entry_ext. Guenther (This used to be commit 48600a0019d70d22574cf08e8fe19d44cc332a0f) --- source3/libnet/libnet_keytab.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'source3/libnet') 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")); -- cgit