diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-09-13 14:33:31 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-09-15 10:25:17 +0200 |
commit | 3f00cce9b3502c8ec9b3f7fcf5b2024c10550f82 (patch) | |
tree | a0ea277fecceb874d1a77b459ccb0a833945b8d9 /source3/auth | |
parent | 4f7be46d99b68040c3b42f3a4662fccd777012a3 (diff) | |
download | samba-3f00cce9b3502c8ec9b3f7fcf5b2024c10550f82.tar.gz samba-3f00cce9b3502c8ec9b3f7fcf5b2024c10550f82.tar.bz2 samba-3f00cce9b3502c8ec9b3f7fcf5b2024c10550f82.zip |
s3:libsmb: pass max_protocol to cli_negprot()
metze
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_server.c b/source3/auth/auth_server.c index 04b46737a2..1df085321a 100644 --- a/source3/auth/auth_server.c +++ b/source3/auth/auth_server.c @@ -106,7 +106,7 @@ static struct cli_state *server_cryptkey(TALLOC_CTX *mem_ctx) DEBUG(3,("got session\n")); - status = cli_negprot(cli); + status = cli_negprot(cli, PROTOCOL_NT1); if (!NT_STATUS_IS_OK(status)) { TALLOC_FREE(mutex); |