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

tridge at samba.org tridge at samba.org
Sun Dec 5 11:13:14 GMT 2004


Author: tridge
Date: 2004-12-05 11:13:14 +0000 (Sun, 05 Dec 2004)
New Revision: 4069

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=4069

Log:
better error code for SMBwriteBMPX

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-12-05 07:59:42 UTC (rev 4068)
+++ branches/SAMBA_4_0/source/smb_server/reply.c	2004-12-05 11:13:14 UTC (rev 4069)
@@ -1883,8 +1883,7 @@
 ****************************************************************************/
 void reply_writebmpx(struct smbsrv_request *req)
 {
-	/* we will need to implement this one for OS/2, but right now I can't be bothered */
-	req_reply_error(req, NT_STATUS_FOOBAR);
+	req_reply_dos_error(req, ERRSRV, ERRuseSTD);
 }
 
 
@@ -1893,8 +1892,7 @@
 ****************************************************************************/
 void reply_writebs(struct smbsrv_request *req)
 {
-	/* see reply_writebmpx */
-	req_reply_error(req, NT_STATUS_FOOBAR);
+	req_reply_dos_error(req, ERRSRV, ERRuseSTD);
 }
 
 



More information about the samba-cvs mailing list