X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=examples%2Fto-xml.c;h=6d0a1dfb3fbf340d3e1579b21942c3d36617837c;hp=f48d1ca7b625663064077ca6ebbf6d91f6a484a6;hb=c477e2fb78347728aaacbbc89666dcda1481a4b9;hpb=627f89351d06e43564b47ea42cabaa522284c2a1 diff --git a/examples/to-xml.c b/examples/to-xml.c index f48d1ca..6d0a1df 100644 --- a/examples/to-xml.c +++ b/examples/to-xml.c @@ -149,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 (STRNEQLEN (dev, "/dev/sd", 7) || isdigit (dev[strlen(dev)-1])) { + if (strncmp (dev, "/dev/sd", 7) != 0 || isdigit (dev[strlen(dev)-1])) { printf ("\n", dev); return; }