change strncasecmp() == 0 to STRCASEEQLEN()
authorJim Meyering <meyering@redhat.com>
Mon, 9 Nov 2009 21:33:54 +0000 (22:33 +0100)
committerJim Meyering <meyering@redhat.com>
Mon, 9 Nov 2009 21:42:02 +0000 (22:42 +0100)
git grep -l 'strncasecmp *([^=]*== *0'|xargs \
  perl -pi -e 's/\bstrncasecmp( *\(.*?\)) *== *0\b/STRCASEEQLEN$1/g'

fish/destpaths.c
fish/fish.c
src/generator.ml

index 87287aa..c12c64a 100644 (file)
@@ -215,7 +215,7 @@ complete_dest_paths_generator (const char *text, int state)
     word = &words[index];
     index++;
 
-    if (strncasecmp (word->name, text, len) == 0) {
+    if (STRCASEEQLEN (word->name, text, len)) {
       if (word->is_dir)
         rl_completion_append_character = '/';
 
index 0387eb7..3f534de 100644 (file)
@@ -1350,7 +1350,7 @@ resolve_win_path (const char *path)
   path += 4;
 
   /* Drop drive letter, if it's "C:". */
-  if (strncasecmp (path, "c:", 2) == 0)
+  if (STRCASEEQLEN (path, "c:", 2))
     path += 2;
 
   if (!*path) {
index 3c1ff2b..4fba15f 100644 (file)
@@ -6772,7 +6772,7 @@ generator (const char *text, int state)
 
   while ((name = commands[index]) != NULL) {
     index++;
-    if (strncasecmp (name, text, len) == 0)
+    if (STRCASEEQLEN (name, text, len))
       return strdup (name);
   }