svn commit: samba r2460 - in branches/SAMBA_4_0/source/smb_server: .

tridge at samba.org tridge at samba.org
Tue Sep 21 04:11:16 GMT 2004


Author: tridge
Date: 2004-09-21 04:11:16 +0000 (Tue, 21 Sep 2004)
New Revision: 2460

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/branches/SAMBA_4_0/source/smb_server&rev=2460&nolog=1

Log:
fixed the spnego code that I recently broke


Modified:
   branches/SAMBA_4_0/source/smb_server/reply.c


Changeset:
Modified: branches/SAMBA_4_0/source/smb_server/reply.c
===================================================================
--- branches/SAMBA_4_0/source/smb_server/reply.c	2004-09-21 04:10:43 UTC (rev 2459)
+++ branches/SAMBA_4_0/source/smb_server/reply.c	2004-09-21 04:11:16 UTC (rev 2460)
@@ -2057,6 +2057,10 @@
 	/* construct reply */
 	req_setup_reply(req, 4, sess.spnego.out.secblob.length);
 
+	if (NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
+		req_setup_error(req, status);
+	}
+
 	SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
 	SSVAL(req->out.vwv, VWV(1), 0);
 	SSVAL(req->out.vwv, VWV(2), sess.spnego.out.action);



More information about the samba-cvs mailing list