From 8ed8ace59d6fdf48b5f543e18a6ad97b177ba47a Mon Sep 17 00:00:00 2001 From: Jim Mankovich Date: Wed, 2 May 2012 13:09:42 +0000 Subject: [PATCH] changes layout of help output of 'user' sub-command. Two note-worthy things change: * heading has line of its own * tabs in command-params replaced by spaces commited for Duncan Idaho --- ipmitool/lib/ipmi_user.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/ipmitool/lib/ipmi_user.c b/ipmitool/lib/ipmi_user.c index d889d0a..1df9627 100644 --- a/ipmitool/lib/ipmi_user.c +++ b/ipmitool/lib/ipmi_user.c @@ -513,14 +513,16 @@ ipmi_user_test_password( static void print_user_usage(void) { - lprintf(LOG_NOTICE, "User Commands: summary []"); - lprintf(LOG_NOTICE, " list []"); - lprintf(LOG_NOTICE, " set name "); + lprintf(LOG_NOTICE, "User Commands:"); + lprintf(LOG_NOTICE, " summary []"); + lprintf(LOG_NOTICE, " list []"); + lprintf(LOG_NOTICE, " set name "); lprintf(LOG_NOTICE, " set password []"); - lprintf(LOG_NOTICE, " disable "); - lprintf(LOG_NOTICE, " enable "); - lprintf(LOG_NOTICE, " priv []"); - lprintf(LOG_NOTICE, " test <16|20> [\n"); + lprintf(LOG_NOTICE, " disable "); + lprintf(LOG_NOTICE, " enable "); + lprintf(LOG_NOTICE, + " priv []"); + lprintf(LOG_NOTICE, " test <16|20> [\n"); }