diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-04-12 07:56:56 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:11:31 -0500 |
commit | b3221032d23cfba45cb9007326725805a4d7bbab (patch) | |
tree | bb21178ddb82563bc41bfd4e449af361803277bf | |
parent | 1372e938fc4b78f2b36375af17a0b8a2d9c1514b (diff) | |
download | samba-b3221032d23cfba45cb9007326725805a4d7bbab.tar.gz samba-b3221032d23cfba45cb9007326725805a4d7bbab.tar.bz2 samba-b3221032d23cfba45cb9007326725805a4d7bbab.zip |
r6315: Allow sane session setup behaviour on SPNEGO regarding VUIDs.
Andrew Bartlett
(This used to be commit 6e2327ee9bb3a9695eb85c6891f73f46d382919f)
-rw-r--r-- | source4/torture/raw/context.c | 4 |
1 files changed, 3 insertions, 1 deletions
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); } |