search for: lnrtv

Displaying 2 results from an estimated 2 matches for "lnrtv".

2016 Jul 22
1
[PATCH] static const char *str -> static const char str
...0, 'a' }, { "checksum", 2, 0, 0 }, diff --git a/daemon/guestfsd.c b/daemon/guestfsd.c index 15ec6ef..03d8f0a 100644 --- a/daemon/guestfsd.c +++ b/daemon/guestfsd.c @@ -141,7 +141,7 @@ usage (void) int main (int argc, char *argv[]) { - static const char *options = "c:lnrtv?"; + static const char options[] = "c:lnrtv?"; static const struct option long_options[] = { { "help", 0, 0, '?' }, { "channel", 1, 0, 'c' }, diff --git a/df/main.c b/df/main.c index 23cdaee..d266cec 100644 --- a/df/main.c +++ b/df/ma...
2015 Jun 25
13
[PATCH v2 0/9] Better testing of the guestfsd daemon.
In v2: - Kernel command line parsing now moved to the appliance. - In the captive daemon test, the daemon cleanly shuts down on exit. - Add another btrfs test. Rich.