From 255bdb26025a5025bc60637dd924f6ec71c49ee5 Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Sat, 7 Jun 2008 02:25:08 +0200 Subject: net: Rename functable3 to functable, get rid of old functables (This used to be commit bb7c5fc4ec77db4073d3beccf12af12910b6bd07) --- source3/utils/net.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/utils/net.c') diff --git a/source3/utils/net.c b/source3/utils/net.c index b1401e97ba..c298fdb461 100644 --- a/source3/utils/net.c +++ b/source3/utils/net.c @@ -313,7 +313,7 @@ static int net_maxrid(struct net_context *c, int argc, const char **argv) } /* main function table */ -static struct functable3 net_func[] = { +static struct functable net_func[] = { { "rpc", net_rpc, @@ -759,7 +759,7 @@ static struct functable3 net_func[] = { } c->private_data = net_func; - rc = net_run_function3(c, argc_new-1, argv_new+1, "net", net_func); + rc = net_run_function(c, argc_new-1, argv_new+1, "net", net_func); DEBUG(2,("return code = %d\n", rc)); -- cgit