Fix debug help error message.
authorMatthew Booth <mbooth@redhat.com>
Mon, 31 Oct 2011 16:47:50 +0000 (16:47 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Mon, 31 Oct 2011 16:47:50 +0000 (16:47 +0000)
When given an invalid debug command, libguestfs responds with the
error message:

  libguestfs: error: debug: use 'debug help' to list the supported commands

However this command does not work, as debug requires two
arguments. This change updates the message to prompt the user to use
'debug help 0'.

daemon/debug.c

index 2ba48a7..6b9d756 100644 (file)
@@ -92,7 +92,7 @@ do_debug (const char *subcmd, char *const *argv)
       return cmds[i].f (subcmd, argc, argv);
   }
 
-  reply_with_error ("use 'debug help' to list the supported commands");
+  reply_with_error ("use 'debug help 0' to list the supported commands");
   return NULL;
 }