From: Matthias Dieter Wallnöfer Date: Fri, 27 Nov 2009 19:26:17 +0000 (+0100) Subject: s4:net utility - add a notice for the "help" operation and format it's output of... X-Git-Tag: samba-4.0.0alpha9~91 X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=commitdiff_plain;h=e79dd2ef7d8b2aba7a84df5f5e82d2869a0598fc;hp=51328a7056918bc75a7c1c442f47cf0271075542 s4:net utility - add a notice for the "help" operation and format it's output of the command list better --- diff --git a/source4/utils/net/net.c b/source4/utils/net/net.c index a96c672dfdc..828e46889ea 100644 --- a/source4/utils/net/net.c +++ b/source4/utils/net/net.c @@ -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 [options]\n"); + d_printf("Type 'net help' for all available commands\n"); return 0; }