summaryrefslogtreecommitdiffstats
path: root/hivex
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-11-09 14:30:11 +0100
committerJim Meyering <meyering@redhat.com>2009-11-09 22:34:16 +0100
commit9a8889e4d0c532b9f77af3a9cc7aae06adebfb83 (patch)
treee2d7910ea5b028ed2628b8006f209eea843458e5 /hivex
parent3e70b34eed5a48640e20fbf6dcba774aaace1f3c (diff)
downloadlibguestfs-9a8889e4d0c532b9f77af3a9cc7aae06adebfb83.tar.gz
libguestfs-9a8889e4d0c532b9f77af3a9cc7aae06adebfb83.tar.xz
libguestfs-9a8889e4d0c532b9f77af3a9cc7aae06adebfb83.zip
use STREQ, not strcmp: part 1
git grep -l 'strcmp *([^=]*== *0'|xargs \ perl -pi -e 's/\bstrcmp( *\(.*?\)) *== *0/STREQ$1/g'
Diffstat (limited to 'hivex')
-rw-r--r--hivex/hivex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hivex/hivex.c b/hivex/hivex.c
index 4b0deebc..e47dd232 100644
--- a/hivex/hivex.c
+++ b/hivex/hivex.c
@@ -235,7 +235,7 @@ hivex_open (const char *filename, int flags)
h->msglvl = flags & HIVEX_OPEN_MSGLVL_MASK;
const char *debug = getenv ("HIVEX_DEBUG");
- if (debug && strcmp (debug, "1") == 0)
+ if (debug && STREQ (debug, "1"))
h->msglvl = 2;
if (h->msglvl >= 2)