diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-09-05 13:24:08 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-09-05 13:25:00 +0200 |
commit | 491c975dfe0c9a70bd2ad22329c1aeb2bf97b4b6 (patch) | |
tree | 502e5e64e68a3300920663e38f378ea57035b518 /source3 | |
parent | 3102bc94240f33518d0ff74eee4f93237fe4563f (diff) | |
download | samba-491c975dfe0c9a70bd2ad22329c1aeb2bf97b4b6.tar.gz samba-491c975dfe0c9a70bd2ad22329c1aeb2bf97b4b6.tar.bz2 samba-491c975dfe0c9a70bd2ad22329c1aeb2bf97b4b6.zip |
s3:smbd: make use of PROTOCOL_SMB2_02
metze
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/negprot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/negprot.c b/source3/smbd/negprot.c index 236b4d6692..49b9420fbf 100644 --- a/source3/smbd/negprot.c +++ b/source3/smbd/negprot.c @@ -743,7 +743,7 @@ void reply_negprot(struct smb_request *req) TALLOC_FREE(cliprotos); - if (lp_async_smb_echo_handler() && (get_Protocol() < PROTOCOL_SMB2) && + if (lp_async_smb_echo_handler() && (get_Protocol() < PROTOCOL_SMB2_02) && !fork_echo_handler(sconn)) { exit_server("Failed to fork echo handler"); } |