From e79dd2ef7d8b2aba7a84df5f5e82d2869a0598fc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Matthias=20Dieter=20Walln=C3=B6fer?= Date: Fri, 27 Nov 2009 20:26:17 +0100 Subject: [PATCH] s4:net utility - add a notice for the "help" operation and format it's output of the command list better --- source4/utils/net/net.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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; } -- 2.11.4.GIT