From 26f1e3f83cb14c5edef081b6cb20d965bc6ba5b7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 26 Nov 2001 00:45:51 +0000 Subject: use DEBUG() not d_printf() in libraries (This used to be commit 5100ae4ae032545edaf525de1dfbe5dc9dafecfc) --- source3/libsmb/cliconnect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/libsmb/cliconnect.c b/source3/libsmb/cliconnect.c index ed4bfcd9e3..ffbc54ea5e 100644 --- a/source3/libsmb/cliconnect.c +++ b/source3/libsmb/cliconnect.c @@ -384,7 +384,7 @@ static BOOL cli_session_setup_kerberos(struct cli_state *cli, char *principal, c { DATA_BLOB blob2, negTokenTarg; - d_printf("Doing kerberos session setup\n"); + DEBUG(2,("Doing kerberos session setup\n")); /* generate the encapsulated kerberos5 ticket */ negTokenTarg = spnego_gen_negTokenTarg(cli, principal); @@ -510,7 +510,7 @@ static BOOL cli_session_setup_spnego(struct cli_state *cli, char *user, int i; BOOL got_kerberos_mechanism = False; - d_printf("Doing spnego session setup\n"); + DEBUG(2,("Doing spnego session setup (blob length=%d)\n", cli->secblob.length)); /* the server might not even do spnego */ if (cli->secblob.length == 16) { -- cgit