1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-26 04:23:49 +03:00

r9178: remove the old server printf code

This commit is contained in:
Andrew Tridgell
2005-08-07 07:01:03 +00:00
committed by Gerald (Jerry) Carter
parent c1ef18a590
commit 0b96b3bfe3

View 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;
}