diff options
author | Jim Meyering <meyering@redhat.com> | 2009-11-09 14:30:11 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-11-09 22:34:16 +0100 |
commit | 9a8889e4d0c532b9f77af3a9cc7aae06adebfb83 (patch) | |
tree | e2d7910ea5b028ed2628b8006f209eea843458e5 /fish | |
parent | 3e70b34eed5a48640e20fbf6dcba774aaace1f3c (diff) | |
download | libguestfs-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 'fish')
-rw-r--r-- | fish/destpaths.c | 2 | ||||
-rw-r--r-- | fish/fish.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/fish/destpaths.c b/fish/destpaths.c index 9a3da82b..02e9f223 100644 --- a/fish/destpaths.c +++ b/fish/destpaths.c @@ -168,7 +168,7 @@ complete_dest_paths_generator (const char *text, int state) if (strcmp (dirents->val[i].name, ".") != 0 && strcmp (dirents->val[i].name, "..") != 0) { - if (strcmp (dir, "/") == 0) + if (STREQ (dir, "/")) err = asprintf (&p, "/%s", dirents->val[i].name); else err = asprintf (&p, "%s/%s", dir, dirents->val[i].name); diff --git a/fish/fish.c b/fish/fish.c index cac4e4a7..869366be 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -215,9 +215,9 @@ main (int argc, char *argv[]) switch (c) { case 0: /* options which are long only */ - if (strcmp (long_options[option_index].name, "listen") == 0) + if (STREQ (long_options[option_index].name, "listen")) remote_control_listen = 1; - else if (strcmp (long_options[option_index].name, "remote") == 0) { + else if (STREQ (long_options[option_index].name, "remote")) { if (optarg) { if (sscanf (optarg, "%d", &remote_control) != 1) { fprintf (stderr, _("%s: --listen=PID: PID was not a number: %s\n"), @@ -233,7 +233,7 @@ main (int argc, char *argv[]) exit (1); } } - } else if (strcmp (long_options[option_index].name, "selinux") == 0) { + } else if (STREQ (long_options[option_index].name, "selinux")) { guestfs_set_selinux (g, 1); } else { fprintf (stderr, _("%s: unknown long option: %s (%d)\n"), @@ -755,7 +755,7 @@ cmdline (char *argv[], int optind, int argc) if (optind >= argc) return; cmd = argv[optind++]; - if (strcmp (cmd, ":") == 0) { + if (STREQ (cmd, ":")) { fprintf (stderr, _("%s: empty command on command line\n"), program_name); exit (1); } |