From e49aeef2323b8432133e502152796b97119890d5 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 7 Aug 2005 07:01:03 +0000 Subject: r9178: remove the old server printf code (This used to be commit 0b96b3bfe370f5f4e44cc1a2a249f766a04c5b07) --- source4/scripting/libjs/server_call.js | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'source4') 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 @@ -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; } -- cgit