diff options
Diffstat (limited to 'source4')
-rw-r--r-- | source4/scripting/libjs/server_call.js | 13 |
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; } |