From 2c09907b537147189e77810f586558be6004733b Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sat, 5 Jan 2002 03:45:50 +0000 Subject: [PATCH] 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 --- source/client/smbmount.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/client/smbmount.c b/source/client/smbmount.c index 2b5617ceb5c..8b56d21bec7 100644 --- a/source/client/smbmount.c +++ b/source/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", -- 2.11.4.GIT