summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-08-07 07:01:03 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:31:29 -0500
commite49aeef2323b8432133e502152796b97119890d5 (patch)
tree4c7f4951591a6d21ee989af67c463c1486d3d2c6 /source4
parentc28816e74b9831981a730bb9a1ea6975da652925 (diff)
downloadsamba-e49aeef2323b8432133e502152796b97119890d5.tar.gz
samba-e49aeef2323b8432133e502152796b97119890d5.tar.bz2
samba-e49aeef2323b8432133e502152796b97119890d5.zip
r9178: remove the old server printf code
(This used to be commit 0b96b3bfe370f5f4e44cc1a2a249f766a04c5b07)
Diffstat (limited to 'source4')
-rw-r--r--source4/scripting/libjs/server_call.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/source4/scripting/libjs/server_call.js b/source4/scripting/libjs/server_call.js
index 1ed3053206..316e764a53 100644
--- a/source4/scripting/libjs/server_call.js
+++ b/source4/scripting/libjs/server_call.js
@@ -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 @@ 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;
}