summaryrefslogtreecommitdiff
path: root/source4/libcli/auth
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-08-25 07:13:01 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:58:21 -0500
commitfadc0e46f75ffd0b26bf159c182a08c979a7f569 (patch)
tree538c97304ddbe81705815664264bd45fc70d01e1 /source4/libcli/auth
parent160ae47430e74c450c0a91409fe466fe178db1b3 (diff)
downloadsamba-fadc0e46f75ffd0b26bf159c182a08c979a7f569.tar.gz
samba-fadc0e46f75ffd0b26bf159c182a08c979a7f569.tar.bz2
samba-fadc0e46f75ffd0b26bf159c182a08c979a7f569.zip
r2053: All RPC sessions 'want' a session key. Of course, the key they
currently get it bougs, but anyway... Andrew Bartlett (This used to be commit 46864dd9d778c008c2f1a3a6701360d4ca64a664)
Diffstat (limited to 'source4/libcli/auth')
-rw-r--r--source4/libcli/auth/gensec.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/libcli/auth/gensec.c b/source4/libcli/auth/gensec.c
index 8188701558..4b362b5305 100644
--- a/source4/libcli/auth/gensec.c
+++ b/source4/libcli/auth/gensec.c
@@ -247,6 +247,9 @@ NTSTATUS gensec_start_mech_by_authtype(struct gensec_security *gensec_security,
gensec_want_feature(gensec_security, GENSEC_WANT_SIGN);
gensec_want_feature(gensec_security, GENSEC_WANT_SEAL);
}
+
+ gensec_want_feature(gensec_security, GENSEC_WANT_SESSION_KEY);
+
return gensec_start_mech(gensec_security);
}