From: Richard W.M. Jones Date: Wed, 24 Jun 2009 11:15:57 +0000 (+0100) Subject: Quote command line arguments to virt-inspector. X-Git-Tag: 1.0.52~1 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=b96fb7eb3aa0ac67957ed15a7dd22bc7399cad44 Quote command line arguments to virt-inspector. --- diff --git a/fish/fish.c b/fish/fish.c index b46fd7e..5e8a6e9 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -276,8 +276,9 @@ main (int argc, char *argv[]) fprintf (stderr, _("guestfish: virt-inspector command too long for fixed-size buffer\n")); exit (1); } - strcat (cmd, " "); + strcat (cmd, " '"); strcat (cmd, argv[optind]); + strcat (cmd, "'"); optind++; }