X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=examples%2Fto-xml.c;h=f48d1ca7b625663064077ca6ebbf6d91f6a484a6;hp=5b75244eb4de5c801f888291e0b316c669078a23;hb=627f89351d06e43564b47ea42cabaa522284c2a1;hpb=3572996364d9d24406241dee5155048440053ecf;ds=sidebyside diff --git a/examples/to-xml.c b/examples/to-xml.c index 5b75244..f48d1ca 100644 --- a/examples/to-xml.c +++ b/examples/to-xml.c @@ -7,7 +7,9 @@ * to-xml guest.img [guest.img ...] */ -#include +#if HAVE_CONFIG_H +# include +#endif #include #include #include @@ -49,7 +51,6 @@ main (int argc, char *argv[]) CALL (guestfs_add_drive (g, argv[i]), -1); CALL (guestfs_launch (g), -1); - CALL (guestfs_wait_ready (g), -1); printf ("\n"); @@ -87,14 +88,14 @@ main (int argc, char *argv[]) int j; for (j = 0; lvs[j] != NULL; ++j) { if (strncmp (lvs[j], "/dev/", 5) == 0 && - strncmp (&lvs[j][5], vgs[i], len) == 0 && - lvs[j][len+5] == '/') { - int64_t size; - CALL (size = guestfs_blockdev_getsize64 (g, lvs[j]), -1); - printf ("\n", lvs[j], size); - display_partition (g, lvs[j]); - printf ("\n"); - free (lvs[j]); + strncmp (&lvs[j][5], vgs[i], len) == 0 && + lvs[j][len+5] == '/') { + int64_t size; + CALL (size = guestfs_blockdev_getsize64 (g, lvs[j]), -1); + printf ("\n", lvs[j], size); + display_partition (g, lvs[j]); + printf ("\n"); + free (lvs[j]); } } @@ -148,7 +149,7 @@ display_partitions (guestfs_h *g, const char *dev) * That's a limitation of sorts of the Linux kernel. (Actually, * we could do this if we add the kpartx program to libguestfs). */ - if (strncmp (dev, "/dev/sd", 7) != 0 || isdigit (dev[strlen(dev)-1])) { + if (STRNEQLEN (dev, "/dev/sd", 7) || isdigit (dev[strlen(dev)-1])) { printf ("\n", dev); return; }