diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-01-05 03:45:50 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-01-05 03:45:50 +0000 |
commit | 69d6c9fe1af2d85036cfbebbf3788128c6d7c5ff (patch) | |
tree | f0e70626e5164399f96a69012b2c2e4d3ad83310 /source3 | |
parent | 86b3aeb42a32a767e6411a730526d67472273c6f (diff) | |
download | samba-69d6c9fe1af2d85036cfbebbf3788128c6d7c5ff.tar.gz samba-69d6c9fe1af2d85036cfbebbf3788128c6d7c5ff.tar.xz samba-69d6c9fe1af2d85036cfbebbf3788128c6d7c5ff.zip |
One line fix to get smbmount working again.
This just turns of SPNGO becouse Win2k breaks if you attempt this and DOS
errors at the same time.
Andrew Bartlett
(This used to be commit 2c09907b537147189e77810f586558be6004733b)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/client/smbmount.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/client/smbmount.c b/source3/client/smbmount.c index 2b5617ceb5c..8b56d21bec7 100644 --- a/source3/client/smbmount.c +++ b/source3/client/smbmount.c @@ -153,6 +153,9 @@ static struct cli_state *do_connection(char *the_service) return NULL; } + /* SPNEGO doesn't work till we get NTSTATUS error support */ + c->use_spnego = False; + if (!cli_session_request(c, &calling, &called)) { char *p; DEBUG(0,("%d: session request to %s failed (%s)\n", |