From b3221032d23cfba45cb9007326725805a4d7bbab Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 12 Apr 2005 07:56:56 +0000 Subject: r6315: Allow sane session setup behaviour on SPNEGO regarding VUIDs. Andrew Bartlett (This used to be commit 6e2327ee9bb3a9695eb85c6891f73f46d382919f) --- source4/torture/raw/context.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source4/torture/raw/context.c') diff --git a/source4/torture/raw/context.c b/source4/torture/raw/context.c index bc8a7b12cf..11065648b0 100644 --- a/source4/torture/raw/context.c +++ b/source4/torture/raw/context.c @@ -113,7 +113,9 @@ static BOOL test_session(struct smbcli_state *cli, TALLOC_CTX *mem_ctx) if (cli->transport->negotiate.capabilities & CAP_EXTENDED_SECURITY) { /* Samba4 currently fails this - we need to determine if this insane behaviour is important */ - CHECK_VALUE(session2->vuid, session->vuid); + if (session2->vuid == session->vuid) { + printf("server allows the user to re-use an existing vuid in session setup \n"); + } } else { CHECK_NOT_VALUE(session2->vuid, session->vuid); } -- cgit