svn commit: samba r9178 - in branches/SAMBA_4_0/source/scripting/libjs: .

tridge at samba.org tridge at samba.org
Sun Aug 7 07:01:04 GMT 2005


Author: tridge
Date: 2005-08-07 07:01:03 +0000 (Sun, 07 Aug 2005)
New Revision: 9178

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

Log:
remove the old server printf code






Modified:
   branches/SAMBA_4_0/source/scripting/libjs/server_call.js


Changeset:
Modified: branches/SAMBA_4_0/source/scripting/libjs/server_call.js
===================================================================
--- branches/SAMBA_4_0/source/scripting/libjs/server_call.js	2005-08-07 07:00:27 UTC (rev 9177)
+++ branches/SAMBA_4_0/source/scripting/libjs/server_call.js	2005-08-07 07:01:03 UTC (rev 9178)
@@ -8,15 +8,6 @@
 libinclude("encoder.js");
 
 /*
-  a remote printf, for displaying stuff on smbd stdout
-*/
-function __server_printf()
-{
-	print(vsprintf(arguments));
-	return undefined;
-}
-
-/*
   register a new call
 */
 function __register_call(name, func)
@@ -86,10 +77,6 @@
 	c.add = __register_call;
 	c.run = __run_call;
 	c.calls = new Object();
-
-	/* add some basic calls */
-	c.add('printf', __server_printf);
-
 	return c;
 }
 



More information about the samba-cvs mailing list