summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_cm.c
diff options
context:
space:
mode:
authorLuk Claes <luk@debian.org>2012-05-19 18:09:30 +0200
committerStefan Metzmacher <metze@samba.org>2012-05-28 14:49:45 +0200
commitd8c0646a5db34a390ceeb853e50c2d098b992c85 (patch)
tree486749c41d524ffa61c50adae19f1b1d2352f525 /source3/winbindd/winbindd_cm.c
parent4f6f4ea93c83fa5154f450e2e43649467e4c2b32 (diff)
downloadsamba-d8c0646a5db34a390ceeb853e50c2d098b992c85.tar.gz
samba-d8c0646a5db34a390ceeb853e50c2d098b992c85.tar.bz2
samba-d8c0646a5db34a390ceeb853e50c2d098b992c85.zip
s3:libsmb: get rid of cli_state_protocol
Signed-off-by: Luk Claes <luk@debian.org> Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/winbindd/winbindd_cm.c')
-rw-r--r--source3/winbindd/winbindd_cm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/winbindd/winbindd_cm.c b/source3/winbindd/winbindd_cm.c
index c515ace347..41795dd1af 100644
--- a/source3/winbindd/winbindd_cm.c
+++ b/source3/winbindd/winbindd_cm.c
@@ -834,10 +834,10 @@ static NTSTATUS cm_prepare_connection(const struct winbindd_domain *domain,
goto done;
}
- if (cli_state_protocol(*cli) >= PROTOCOL_NT1 &&
+ if (smbXcli_conn_protocol((*cli)->conn) >= PROTOCOL_NT1 &&
cli_state_capabilities(*cli) & CAP_EXTENDED_SECURITY) {
try_spnego = true;
- } else if (cli_state_protocol(*cli) >= PROTOCOL_SMB2_02) {
+ } else if (smbXcli_conn_protocol((*cli)->conn) >= PROTOCOL_SMB2_02) {
try_spnego = true;
}