summaryrefslogtreecommitdiff
path: root/source3/libsmb/ntlmssp_wrap.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-10-18 21:20:01 +1100
committerStefan Metzmacher <metze@samba.org>2011-10-21 08:43:18 +0200
commit487545d48fc0625aab20aa8f46897e2bd622554f (patch)
tree2e491335f0fdacd499a291029c4dfdb82fbb3c6a /source3/libsmb/ntlmssp_wrap.c
parent083025ccd53fe3ee90fcc81eb8d4c566e11fd6ac (diff)
downloadsamba-487545d48fc0625aab20aa8f46897e2bd622554f.tar.gz
samba-487545d48fc0625aab20aa8f46897e2bd622554f.tar.bz2
samba-487545d48fc0625aab20aa8f46897e2bd622554f.zip
s3-ntlmssp Remove auth_ntlmssp_negotiated_sign() and auth_ntlmssp_negotiated_seal()
We now just call the gensec_have_feature() directly. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/libsmb/ntlmssp_wrap.c')
-rw-r--r--source3/libsmb/ntlmssp_wrap.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/source3/libsmb/ntlmssp_wrap.c b/source3/libsmb/ntlmssp_wrap.c
index af5f2c9f68..e18a60b730 100644
--- a/source3/libsmb/ntlmssp_wrap.c
+++ b/source3/libsmb/ntlmssp_wrap.c
@@ -72,16 +72,6 @@ NTSTATUS auth_ntlmssp_unseal_packet(struct auth_ntlmssp_state *ans,
data, length, whole_pdu, pdu_length, sig);
}
-bool auth_ntlmssp_negotiated_sign(struct auth_ntlmssp_state *ans)
-{
- return gensec_have_feature(ans->gensec_security, GENSEC_FEATURE_SIGN);
-}
-
-bool auth_ntlmssp_negotiated_seal(struct auth_ntlmssp_state *ans)
-{
- return gensec_have_feature(ans->gensec_security, GENSEC_FEATURE_SEAL);
-}
-
NTSTATUS auth_ntlmssp_set_username(struct auth_ntlmssp_state *ans,
const char *user)
{