diff options
| author | Richard W.M. Jones <rjones@redhat.com> | 2009-07-11 21:33:41 +0100 |
|---|---|---|
| committer | Richard W.M. Jones <rjones@redhat.com> | 2009-07-11 21:33:41 +0100 |
| commit | 89dfb94d3ec0276e1bcbaf63c9ecee3ec4e73619 (patch) | |
| tree | 902e2ee66e39708a65014ec6ec4e0e6b49637f0b | |
| parent | 8d167a98eca95352e36775068bbc0d90f3009edb (diff) | |
Fix: '-D' was not recognized as a parameter to guestfish.
| -rw-r--r-- | fish/fish.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fish/fish.c b/fish/fish.c index 353c8b2b..132b59e7 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' }, |
