s3:libnet: add a debug message to libnet_keytab_add_to_keytab_entries()
authorStefan Metzmacher <metze@samba.org>
Thu, 3 Feb 2022 17:27:19 +0000 (18:27 +0100)
committerStefan Metzmacher <metze@samba.org>
Tue, 30 Apr 2024 12:52:50 +0000 (14:52 +0200)
Signed-off-by: Stefan Metzmacher <metze@samba.org>
source3/libnet/libnet_keytab.c

index ea4fd5e8ea8964894cfb60a557ea59bf35b6ff45..a0f1af8d791d32c2876b43fbe513a9a773e8e89f 100644 (file)
@@ -447,6 +447,8 @@ NTSTATUS libnet_keytab_add_to_keytab_entries(TALLOC_CTX *mem_ctx,
        NT_STATUS_HAVE_NO_MEMORY(entry.principal);
        NT_STATUS_HAVE_NO_MEMORY(entry.password.data);
 
+       DBG_INFO("%s: kvno:%d enctype:%d\n", entry.principal, kvno, enctype);
+
        ADD_TO_ARRAY(mem_ctx, struct libnet_keytab_entry, entry,
                     &ctx->entries, &ctx->count);
        NT_STATUS_HAVE_NO_MEMORY(ctx->entries);