diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-08-03 11:21:32 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2013-08-10 09:19:01 +0200 |
commit | a07049a839729e29ca888bae353cd37fd6238486 (patch) | |
tree | 03eed77e292ef49afc077d6995d504b73b9ed706 /source4 | |
parent | b5104768225ae0308aa3f22f8d9bca389ef3cb3a (diff) | |
download | samba-a07049a839729e29ca888bae353cd37fd6238486.tar.gz samba-a07049a839729e29ca888bae353cd37fd6238486.tar.bz2 samba-a07049a839729e29ca888bae353cd37fd6238486.zip |
s4:gensec/schannel: GENSEC_FEATURE_ASYNC_REPLIES is not supported
There's a sequence number attached to the connection,
which needs to be incremented with each message...
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4')
-rw-r--r-- | source4/auth/gensec/schannel.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/source4/auth/gensec/schannel.c b/source4/auth/gensec/schannel.c index 91f166be38..7fc0c7c108 100644 --- a/source4/auth/gensec/schannel.c +++ b/source4/auth/gensec/schannel.c @@ -234,9 +234,6 @@ static bool schannel_have_feature(struct gensec_security *gensec_security, if (feature & GENSEC_FEATURE_DCE_STYLE) { return true; } - if (feature & GENSEC_FEATURE_ASYNC_REPLIES) { - return true; - } return false; } |