1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

net: Move help for "net status" to net_status.c

(This used to be commit d26681b169a533f838f74d48af072b57afc9f8df)
This commit is contained in:
Kai Blin 2008-05-14 15:09:29 +02:00
parent 1634bd92ea
commit 89cd35d054
3 changed files with 14 additions and 13 deletions

View File

@ -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"\

View File

@ -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 */

View File

@ -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);
}