From c08559c0ba6be39feeb2387d95666c953b9d8cde Mon Sep 17 00:00:00 2001 From: Christine Caulfield Date: Mon, 27 Oct 2008 15:56:46 +0000 Subject: [PATCH] Improve the usage message of corosync_objctl. git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@1679 fd59a12c-fef9-0310-b244-a6a79926bd2f --- tools/corosync-objctl.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tools/corosync-objctl.c b/tools/corosync-objctl.c index e6106ad8..17ef274b 100644 --- a/tools/corosync-objctl.c +++ b/tools/corosync-objctl.c @@ -181,11 +181,12 @@ static int print_all(void) static int print_help(void) { printf("\n"); - printf ("usage: corosync-objctl object%ckey ...\n", SEPERATOR); - printf (" corosync-objctl -c object%cchild_obj ...\n", SEPERATOR); - printf (" corosync-objctl -d object%cchild_obj ...\n", SEPERATOR); - printf (" corosync-objctl -w object%cchild_obj.key=value ...\n", SEPERATOR); - printf (" corosync-objctl -a (print all objects)\n"); + printf ("usage: corosync-objctl object%ckey ... Print an object\n", SEPERATOR); + printf (" corosync-objctl -c object%cchild_obj ... Create Object\n", SEPERATOR); + printf (" corosync-objctl -d object%cchild_obj ... Delete object\n", SEPERATOR); + printf (" corosync-objctl -w object%cchild_obj.key=value ... Create a key\n", SEPERATOR); + printf (" corosync-objctl -t object%cchild_obj ... Track changes\n", SEPERATOR); + printf (" corosync-objctl -a Print all objects\n"); printf("\n"); return 0; }