X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=cat%2Fvirt-ls.c;h=e2700d238c3808ebb375e32b9230d51cc85bd361;hb=6e5f64089631622167e60df25ee009ef83df5170;hp=a3f043a06e1590c7689647e0b6cbdd2cad1320b6;hpb=f6d3d5677194ae7aaea70d43845341d91907b5ee;p=libguestfs.git diff --git a/cat/virt-ls.c b/cat/virt-ls.c index a3f043a..e2700d2 100644 --- a/cat/virt-ls.c +++ b/cat/virt-ls.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include "progname.h" @@ -35,6 +36,7 @@ guestfs_h *g; int read_only = 1; +int live = 0; int verbose = 0; int keys_from_stdin = 0; int echo_keys = 0; @@ -109,11 +111,9 @@ main (int argc, char *argv[]) }; struct drv *drvs = NULL; struct drv *drv; - char *p, *file = NULL; const char *format = NULL; int c; int option_index; - int next_prepared_drive = 1; char mode = 0; g = guestfs_create (); @@ -229,6 +229,7 @@ main (int argc, char *argv[]) */ assert (read_only == 1); assert (inspector == 1); + assert (live == 0); /* User must specify at least one directory name on the command line. */ if (optind >= argc || argc - optind < 1) @@ -272,7 +273,6 @@ main (int argc, char *argv[]) } else if (mode == 'l') { char *out; - size_t i; if ((out = guestfs_ll (g, dir)) == NULL) errors++;