summaryrefslogtreecommitdiffstats
path: root/fish/destpaths.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-11-09 14:26:21 +0100
committerJim Meyering <meyering@redhat.com>2009-11-09 22:34:16 +0100
commit3e70b34eed5a48640e20fbf6dcba774aaace1f3c (patch)
tree5bb681d85d8ff394f562b095e70c36d4ac5f7b5d /fish/destpaths.c
parent627f89351d06e43564b47ea42cabaa522284c2a1 (diff)
downloadlibguestfs-3e70b34eed5a48640e20fbf6dcba774aaace1f3c.tar.gz
libguestfs-3e70b34eed5a48640e20fbf6dcba774aaace1f3c.tar.xz
libguestfs-3e70b34eed5a48640e20fbf6dcba774aaace1f3c.zip
change strncmp() == 0 to STREQLEN()
git grep -l 'strncmp *([^=]*== *0'|xargs \ perl -pi -e 's/\bstrncmp( *\(.*?\)) *== *0\b/STREQLEN$1/g'
Diffstat (limited to 'fish/destpaths.c')
-rw-r--r--fish/destpaths.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fish/destpaths.c b/fish/destpaths.c
index 1e42ae80..9a3da82b 100644
--- a/fish/destpaths.c
+++ b/fish/destpaths.c
@@ -133,7 +133,7 @@ complete_dest_paths_generator (const char *text, int state)
} while (0)
/* Is it a device? */
- if (len < 5 || strncmp (text, "/dev/", 5) == 0) {
+ if (len < 5 || STREQLEN (text, "/dev/", 5)) {
/* Get a list of everything that can possibly begin with /dev/ */
strs = guestfs_list_devices (g);
APPEND_STRS_AND_FREE;