diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-01-05 15:36:33 -0600 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-01-05 09:42:02 -0600 |
commit | 2c8c9a535500e40084c4810da1890df8d9415659 (patch) | |
tree | 4ddfde12662feb02646d1ab8bc6c8e57bcea19aa /source4/libcli/raw/rawnegotiate.c | |
parent | a5301d220439e096c996629146128423ee47a868 (diff) | |
download | samba-2c8c9a535500e40084c4810da1890df8d9415659.tar.gz samba-2c8c9a535500e40084c4810da1890df8d9415659.tar.bz2 samba-2c8c9a535500e40084c4810da1890df8d9415659.zip |
r26669: Janitorial: Remove uses of global_loadparm.
(This used to be commit 50c46160d997e0448f51ae09e0f3c79e8519fa41)
Diffstat (limited to 'source4/libcli/raw/rawnegotiate.c')
-rw-r--r-- | source4/libcli/raw/rawnegotiate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/libcli/raw/rawnegotiate.c b/source4/libcli/raw/rawnegotiate.c index 78b9082521..fc7725cc55 100644 --- a/source4/libcli/raw/rawnegotiate.c +++ b/source4/libcli/raw/rawnegotiate.c @@ -175,11 +175,11 @@ NTSTATUS smb_raw_negotiate_recv(struct smbcli_request *req) } /* a way to force ascii SMB */ - if (!lp_unicode(global_loadparm)) { + if (!transport->options.unicode) { transport->negotiate.capabilities &= ~CAP_UNICODE; } - if (!lp_nt_status_support(global_loadparm)) { + if (!transport->options.ntstatus_support) { transport->negotiate.capabilities &= ~CAP_STATUS32; } |