summaryrefslogtreecommitdiffstats
path: root/fish/fish.c
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-04-04 01:49:36 +0100
committerRichard Jones <rjones@redhat.com>2009-04-04 01:49:36 +0100
commitb4c040d30e2677313a892ffe4cde0d53e446da7d (patch)
tree4538afdbc6d5c338d75a94a6752b60a43151c8d6 /fish/fish.c
parent76f3ea8fb3318966c376bc6fbccbd5a81a9ec564 (diff)
downloadlibguestfs-b4c040d30e2677313a892ffe4cde0d53e446da7d.tar.gz
libguestfs-b4c040d30e2677313a892ffe4cde0d53e446da7d.tar.xz
libguestfs-b4c040d30e2677313a892ffe4cde0d53e446da7d.zip
More tidy up of messages.
Diffstat (limited to 'fish/fish.c')
-rw-r--r--fish/fish.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/fish/fish.c b/fish/fish.c
index d256c2b0..fbb26def 100644
--- a/fish/fish.c
+++ b/fish/fish.c
@@ -239,7 +239,8 @@ script (int prompt)
int len, i;
if (prompt)
- printf ("Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
+ printf ("\n"
+ "Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
"editing virtual machine filesystems.\n"
"\n"
"Type: 'help' for help with commands\n"
@@ -334,7 +335,7 @@ issue_command (const char *cmd, char *argv[])
}
else if (strcasecmp (cmd, "cdrom") == 0) {
if (argc != 1) {
- fprintf (stderr, "use 'cdrom image' to add a guest cdrom\n");
+ fprintf (stderr, "use 'cdrom image' to add a CD-ROM image\n");
return -1;
}
else
@@ -360,9 +361,9 @@ list_builtin_commands (void)
printf ("%-20s %s\n",
"quit", "quit guestfish");
printf ("%-20s %s\n",
- "add", "add a guest image to be examined or modified");
+ "add", "add a guest image to be examined or modified");
printf ("%-20s %s\n",
- "cdrom", "add a guest CD-ROM image to be examined");
+ "cdrom", "add a CD-ROM image to be examined");
printf ("%-20s %s\n",
"launch", "launch the subprocess");
}
@@ -374,7 +375,7 @@ display_builtin_command (const char *cmd)
printf ("add - add a guest image to be examined or modified\n"
" add <image>\n");
else if (strcasecmp (cmd, "cdrom") == 0)
- printf ("cdrom - add a guest CD-ROM image to be examined\n"
+ printf ("cdrom - add a CD-ROM image to be examined\n"
" cdrom <iso-file>\n");
else if (strcasecmp (cmd, "help") == 0)
printf ("help - display a list of commands or help on a command\n"