r9178: remove the old server printf code
authorAndrew Tridgell <tridge@samba.org>
Sun, 7 Aug 2005 07:01:03 +0000 (07:01 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:31:29 +0000 (13:31 -0500)
(This used to be commit 0b96b3bfe370f5f4e44cc1a2a249f766a04c5b07)

source4/scripting/libjs/server_call.js

index 1ed30532065381173a16b0619e6644fdd39782f5..316e764a531d8b53bc6639ba54d83571741c1f1e 100644 (file)
@@ -7,15 +7,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
 */
@@ -86,10 +77,6 @@ function servCallObj()
        c.add = __register_call;
        c.run = __run_call;
        c.calls = new Object();
-
-       /* add some basic calls */
-       c.add('printf', __server_printf);
-
        return c;
 }