summaryrefslogtreecommitdiff
path: root/source4/client
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-12-02 16:20:32 +0100
committerStefan Metzmacher <metze@samba.org>2007-12-21 05:47:00 +0100
commit8d8ad81437555affe0ce189ab9b7049501c708b1 (patch)
treeb5e2aa75ea1c4ad42b8ff74e70d4c84bd10d7535 /source4/client
parent25f286fdfe0cf7ac800ccf3ac62ee5e1d2ceb583 (diff)
downloadsamba-8d8ad81437555affe0ce189ab9b7049501c708b1.tar.gz
samba-8d8ad81437555affe0ce189ab9b7049501c708b1.tar.bz2
samba-8d8ad81437555affe0ce189ab9b7049501c708b1.zip
r26224: Remove another use of global_loadparm.
(This used to be commit bd12560432b3a8faf124ae1f562b725f3b6686d9)
Diffstat (limited to 'source4/client')
-rw-r--r--source4/client/smbmount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/client/smbmount.c b/source4/client/smbmount.c
index 8a106974c2..1a1371edae 100644
--- a/source4/client/smbmount.c
+++ b/source4/client/smbmount.c
@@ -181,7 +181,7 @@ static struct smbcli_state *do_connection(char *the_service)
DEBUG(4,("%d: session request ok\n", sys_getpid()));
- if (!smbcli_negprot(c)) {
+ if (!smbcli_negprot(c, lp_cli_maxprotocol(global_loadparm))) {
DEBUG(0,("%d: protocol negotiation failed\n", sys_getpid()));
talloc_free(c);
return NULL;