X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=fish%2Ffish.c;h=54fd27070d6f15eaf36e4ce4cc65723a2b81a52f;hp=559d6097f55c11c06975a0960db3694b0fb7985e;hb=74f7c9e4b7e27787e2052166eeedfbac5814200b;hpb=7e3d76e41b3c2862ae04744b01e5e23b245393e4 diff --git a/fish/fish.c b/fish/fish.c index 559d609..54fd270 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -626,7 +626,7 @@ script (int prompt) "Welcome to guestfish, the libguestfs filesystem interactive shell for\n" "editing virtual machine filesystems.\n" "\n" - "Type: 'help' for a list of commands\n" + "Type: 'help' for help on commands\n" " 'man' to read the manual\n" " 'quit' to quit the shell\n" "\n")); @@ -925,7 +925,7 @@ issue_command (const char *cmd, char *argv[], const char *pipecmd) /* Otherwise execute it locally. */ else if (STRCASEEQ (cmd, "help")) { if (argc == 0) { - list_commands (); + display_help (); r = 0; } else r = display_command (argv[0]);