summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-11-10 17:09:54 +0000
committerRichard Jones <rjones@redhat.com>2009-11-10 17:09:54 +0000
commitae4589f17b0123044e3b27ebb8e14bc6f539c23c (patch)
tree7f1f65b1ca030ece0b9fc6f7fcf64a72af88a659
parentade327a7af869d4d70e28e2a596473943e0299dd (diff)
downloadlibguestfs-ae4589f17b0123044e3b27ebb8e14bc6f539c23c.tar.gz
libguestfs-ae4589f17b0123044e3b27ebb8e14bc6f539c23c.tar.xz
libguestfs-ae4589f17b0123044e3b27ebb8e14bc6f539c23c.zip
examples: Don't use STREQ etc in the to-xml.c example.
-rw-r--r--examples/to-xml.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/to-xml.c b/examples/to-xml.c
index ee1b3bff..6d0a1dfb 100644
--- a/examples/to-xml.c
+++ b/examples/to-xml.c
@@ -87,8 +87,8 @@ main (int argc, char *argv[])
int len = strlen (vgs[i]);
int j;
for (j = 0; lvs[j] != NULL; ++j) {
- if (STREQLEN (lvs[j], "/dev/", 5) &&
- STREQLEN (&lvs[j][5], vgs[i], len) &&
+ 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);
@@ -120,12 +120,12 @@ display_partition (guestfs_h *g, const char *dev)
CALL (what = guestfs_file (g, dev), NULL);
- if (STREQ (what, "x86 boot sector"))
+ if (strcmp (what, "x86 boot sector") == 0)
/* This is what 'file' program shows for Windows/NTFS partitions. */
printf ("<windows/>\n");
else if (strstr (what, "boot sector") != NULL)
display_partitions (g, dev);
- else if (STREQLEN (what, "LVM2", 4))
+ else if (strncmp (what, "LVM2", 4) == 0)
printf ("<physvol/>\n");
else if (strstr (what, "ext2 filesystem data") != NULL)
display_ext234 (g, dev, "ext2");
@@ -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 ("<vm-image dev=\"%s\"/>\n", dev);
return;
}
@@ -162,7 +162,7 @@ display_partitions (guestfs_h *g, const char *dev)
len = strlen (dev);
for (i = 0; parts[i] != NULL; ++i) {
/* Only display partition if it's in the device. */
- if (STREQLEN (parts[i], dev, len)) {
+ if (strncmp (parts[i], dev, len) == 0) {
int64_t size;
CALL (size = guestfs_blockdev_getsize64 (g, parts[i]), -1);
printf ("<partition dev=\"%s\" size=\"%" PRIi64 "\">\n", parts[i], size);
@@ -190,9 +190,9 @@ display_ext234 (guestfs_h *g, const char *dev, const char *fstype)
/* Just pick out a few important fields to display. There
* is much more that could be displayed here.
*/
- if (STREQ (sbfields[i], "Filesystem UUID"))
+ if (strcmp (sbfields[i], "Filesystem UUID") == 0)
printf ("<uuid>%s</uuid>\n", sbfields[i+1]);
- else if (STREQ (sbfields[i], "Block size"))
+ else if (strcmp (sbfields[i], "Block size") == 0)
printf ("<blocksize>%s</blocksize>\n", sbfields[i+1]);
free (sbfields[i]);