diff options
author | Richard Jones <rjones@redhat.com> | 2010-05-12 15:29:03 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-05-12 16:13:07 +0100 |
commit | 87eecb507ee09a62f3a12f5f75d3417a09c0c8d4 (patch) | |
tree | 77ff2b14ade6ca3c109daa9146c775d17147f20b /fish/fish.c | |
parent | 3cead7285040673a50a119f3be7de4d7f3334f73 (diff) | |
download | libguestfs-87eecb507ee09a62f3a12f5f75d3417a09c0c8d4.tar.gz libguestfs-87eecb507ee09a62f3a12f5f75d3417a09c0c8d4.tar.xz libguestfs-87eecb507ee09a62f3a12f5f75d3417a09c0c8d4.zip |
fish: With both '-x' and '-i', pass through '-x' to inferior process.
Diffstat (limited to 'fish/fish.c')
-rw-r--r-- | fish/fish.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fish/fish.c b/fish/fish.c index 461f55b8..75bc2cfd 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -405,6 +405,8 @@ main (int argc, char *argv[]) strcat (cmd, " -v"); if (!guestfs_get_autosync (g)) strcat (cmd, " -n"); + if (guestfs_get_trace (g)) + strcat (cmd, " -x"); if (verbose) fprintf (stderr, |