svn commit: samba r4979 - in branches/SAMBA_4_0/source/ntvfs/ipc: .

tpot at samba.org tpot at samba.org
Tue Jan 25 09:46:01 GMT 2005


Author: tpot
Date: 2005-01-25 09:46:00 +0000 (Tue, 25 Jan 2005)
New Revision: 4979

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

Log:
Return NT_STATUS_INVALID_SYSTEM_SERVICE for unimplemented RAP calls as
this is what win2k3 does.

Modified:
   branches/SAMBA_4_0/source/ntvfs/ipc/ipc_rap.c


Changeset:
Modified: branches/SAMBA_4_0/source/ntvfs/ipc/ipc_rap.c
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/ipc/ipc_rap.c	2005-01-25 05:51:42 UTC (rev 4978)
+++ branches/SAMBA_4_0/source/ntvfs/ipc/ipc_rap.c	2005-01-25 09:46:00 UTC (rev 4979)
@@ -417,7 +417,7 @@
 	call->ndr_push_param->flags = RAPNDR_FLAGS;
 	call->ndr_push_data->flags = RAPNDR_FLAGS;
 
-	result = NT_STATUS_NOT_IMPLEMENTED;
+	result = NT_STATUS_INVALID_SYSTEM_SERVICE;
 
 	for (i=0; api_commands[i].name != NULL; i++) {
 		if (api_commands[i].id == call->callno) {



More information about the samba-cvs mailing list