summaryrefslogtreecommitdiff
path: root/source4/client
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-07-12 09:11:13 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:57:32 -0500
commit88002b851bd30e3c03a5a9442baf3ced7aa6090f (patch)
tree8547a06b7e5af9c4cb5e73f6190035aefd7fd75c /source4/client
parentb62e6f1ec13c6cad5a94a2a27dc14d3fdfdd4cfc (diff)
downloadsamba-88002b851bd30e3c03a5a9442baf3ced7aa6090f.tar.gz
samba-88002b851bd30e3c03a5a9442baf3ced7aa6090f.tar.bz2
samba-88002b851bd30e3c03a5a9442baf3ced7aa6090f.zip
r1462: GENSEC Kerberos and SPENGO work:
- Spelling - it's SPNEGO, not SPENGO - SMB signing - Krb5 logins are now correctly signed - SPNEGO - Changes to always tell GENSEC about incoming packets, empty or not. Andrew Bartlett (This used to be commit cea578d6f39a2ea4a24e7a0064c95193ab6f6df7)
Diffstat (limited to 'source4/client')
-rw-r--r--source4/client/client.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/client/client.c b/source4/client/client.c
index db44dd3d28..0ad3eed889 100644
--- a/source4/client/client.c
+++ b/source4/client/client.c
@@ -2836,6 +2836,7 @@ static struct cli_state *do_connect(const char *server, const char *share)
status = cli_session_setup(c, username, password, lp_workgroup());
if (NT_STATUS_IS_ERR(status)) {
+ d_printf("authenticated session setup failed: %s\n", nt_errstr(status));
/* if a password was not supplied then try again with a null username */
if (password[0] || !username[0] || use_kerberos) {
status = cli_session_setup(c, "", "", lp_workgroup());