From 87eecb507ee09a62f3a12f5f75d3417a09c0c8d4 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Wed, 12 May 2010 15:29:03 +0100 Subject: [PATCH] fish: With both '-x' and '-i', pass through '-x' to inferior process. --- fish/fish.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fish/fish.c b/fish/fish.c index 461f55b..75bc2cf 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, -- 1.8.3.1