summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-11-26 00:45:51 +0000
committerAndrew Tridgell <tridge@samba.org>2001-11-26 00:45:51 +0000
commit26f1e3f83cb14c5edef081b6cb20d965bc6ba5b7 (patch)
tree683f7978de849e4047d9a4851624f819de03e640 /source3
parent03439e183686567f632fa9c085691c4bb8d3e365 (diff)
downloadsamba-26f1e3f83cb14c5edef081b6cb20d965bc6ba5b7.tar.gz
samba-26f1e3f83cb14c5edef081b6cb20d965bc6ba5b7.tar.bz2
samba-26f1e3f83cb14c5edef081b6cb20d965bc6ba5b7.zip
use DEBUG() not d_printf() in libraries
(This used to be commit 5100ae4ae032545edaf525de1dfbe5dc9dafecfc)
Diffstat (limited to 'source3')
-rw-r--r--source3/libsmb/cliconnect.c4
1 files 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) {