From 89dfb94d3ec0276e1bcbaf63c9ecee3ec4e73619 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Sat, 11 Jul 2009 21:33:41 +0100 Subject: [PATCH] Fix: '-D' was not recognized as a parameter to guestfish. --- fish/fish.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish/fish.c b/fish/fish.c index 353c8b2..132b59e 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -119,7 +119,7 @@ usage (void) int main (int argc, char *argv[]) { - static const char *options = "a:f:h::im:nrv?V"; + static const char *options = "a:Df:h::im:nrv?V"; static struct option long_options[] = { { "add", 1, 0, 'a' }, { "cmd-help", 2, 0, 'h' }, -- 1.8.3.1