1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s4:net utility - add a notice for the "help" operation and format it's output of the command list better

This commit is contained in:
Matthias Dieter Wallnöfer 2009-11-27 20:26:17 +01:00
parent 51328a7056
commit e79dd2ef7d

View File

@ -120,7 +120,11 @@ int net_help(struct net_context *ctx, const struct net_functable *ftable)
d_printf("Available commands:\n");
while (name && desc) {
d_printf("\t%s\t\t%s", name, desc);
if (strlen(name) > 7) {
d_printf("\t%s\t%s", name, desc);
} else {
d_printf("\t%s\t\t%s", name, desc);
}
name = ftable[++i].name;
desc = ftable[i].desc;
}
@ -132,6 +136,7 @@ static int net_usage(struct net_context *ctx, int argc, const char **argv)
{
d_printf("Usage:\n");
d_printf("net <command> [options]\n");
d_printf("Type 'net help' for all available commands\n");
return 0;
}