auth/ntlmssp: GENSEC_FEATURE_SIGN_PKT_HEADER is always supported
authorStefan Metzmacher <metze@samba.org>
Tue, 31 Dec 2013 08:53:55 +0000 (09:53 +0100)
committerStefan Metzmacher <metze@samba.org>
Mon, 6 Jan 2014 23:27:11 +0000 (00:27 +0100)
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
auth/ntlmssp/gensec_ntlmssp.c

index 654c0e3cba3370f9b512fcfa70a6a870f395d8fc..567258914af1f7bd8043fc8d008fa79a7e186e6a 100644 (file)
@@ -102,6 +102,10 @@ bool gensec_ntlmssp_have_feature(struct gensec_security *gensec_security,
                        return true;
                }
        }
+       if (feature & GENSEC_FEATURE_SIGN_PKT_HEADER) {
+               return true;
+       }
+
        return false;
 }