From: Kai Blin Date: Wed, 14 May 2008 13:09:29 +0000 (+0200) Subject: net: Move help for "net status" to net_status.c X-Git-Tag: samba-3.3.0pre1~1188^2~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d26681b169a533f838f74d48af072b57afc9f8df;p=thirdparty%2Fsamba.git net: Move help for "net status" to net_status.c --- diff --git a/source/utils/net_help.c b/source/utils/net_help.c index 51dc1a0c517..6138a1e511b 100644 --- a/source/utils/net_help.c +++ b/source/utils/net_help.c @@ -33,15 +33,6 @@ static int help_usage(struct net_context *c, int argc, const char **argv) return -1; } -int net_help_status(struct net_context *c, int argc, const char **argv) -{ - d_printf(" net status sessions [parseable] " - "Show list of open sessions\n"); - d_printf(" net status shares [parseable] " - "Show list of open shares\n"); - return -1; -} - static int net_usage(struct net_context *c, int argc, const char **argv) { d_printf(" net time\t\tto view or set time information\n"\ diff --git a/source/utils/net_proto.h b/source/utils/net_proto.h index d429aa7ee26..6d6700aa50f 100644 --- a/source/utils/net_proto.h +++ b/source/utils/net_proto.h @@ -117,7 +117,6 @@ int net_groupmap(struct net_context *c, int argc, const char **argv); /* The following definitions come from utils/net_help.c */ -int net_help_status(struct net_context *c, int argc, const char **argv); int net_help(struct net_context *c, int argc, const char **argv); /* The following definitions come from utils/net_idmap.c */ @@ -409,6 +408,7 @@ int net_share(struct net_context *c, int argc, const char **argv); /* The following definitions come from utils/net_status.c */ +int net_status_usage(struct net_context *c, int argc, const char **argv); int net_status(struct net_context *c, int argc, const char **argv); /* The following definitions come from utils/net_time.c */ diff --git a/source/utils/net_status.c b/source/utils/net_status.c index 121577f165d..2835b2084d9 100644 --- a/source/utils/net_status.c +++ b/source/utils/net_status.c @@ -19,6 +19,15 @@ #include "includes.h" #include "utils/net.h" +int net_status_usage(struct net_context *c, int argc, const char **argv) +{ + d_printf(" net status sessions [parseable] " + "Show list of open sessions\n"); + d_printf(" net status shares [parseable] " + "Show list of open shares\n"); + return -1; +} + static int show_session(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf, void *state) { @@ -59,7 +68,7 @@ static int net_status_sessions(struct net_context *c, int argc, const char **arg } else if ((argc == 1) && strequal(argv[0], "parseable")) { parseable = true; } else { - return net_help_status(c, argc, argv); + return net_status_usage(c, argc, argv); } if (!parseable) { @@ -209,7 +218,7 @@ static int net_status_shares(struct net_context *c, int argc, const char **argv) } if ((argc != 1) || !strequal(argv[0], "parseable")) { - return net_help_status(c, argc, argv); + return net_status_usage(c, argc, argv); } return net_status_shares_parseable(c, argc, argv); @@ -220,7 +229,8 @@ int net_status(struct net_context *c, int argc, const char **argv) struct functable func[] = { {"sessions", net_status_sessions}, {"shares", net_status_shares}, + {"help", net_status_usage}, {NULL, NULL} }; - return net_run_function(c, argc, argv, func, net_help_status); + return net_run_function(c, argc, argv, func, net_status_usage); }