diff options
Diffstat (limited to 'source3/utils/net_cache.c')
-rw-r--r-- | source3/utils/net_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/net_cache.c b/source3/utils/net_cache.c index 7c5acbc23d..4e9ae18c0d 100644 --- a/source3/utils/net_cache.c +++ b/source3/utils/net_cache.c @@ -310,7 +310,7 @@ static int net_cache_flush(struct net_context *c, int argc, const char **argv) **/ int net_cache(struct net_context *c, int argc, const char **argv) { - struct functable3 func[] = { + struct functable func[] = { { "add", net_cache_add, @@ -369,5 +369,5 @@ int net_cache(struct net_context *c, int argc, const char **argv) {NULL, NULL, 0, NULL, NULL} }; - return net_run_function3(c, argc, argv, "net cache", func); + return net_run_function(c, argc, argv, "net cache", func); } |