]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid strneq.
authorDave Love <fx@gnu.org>
Mon, 11 Oct 1999 17:14:12 +0000 (17:14 +0000)
committerDave Love <fx@gnu.org>
Mon, 11 Oct 1999 17:14:12 +0000 (17:14 +0000)
lib-src/getopt.c

index 8eefe1168f79bd662d8985b9f01af7d1fb5c6dd4..03effcbdb3e110c50cbf17153834eef8fe62e3f9 100644 (file)
@@ -652,7 +652,7 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
       /* Test all long options for either exact match
         or abbreviated matches.  */
       for (p = longopts, option_index = 0; p->name; p++, option_index++)
-       if (strneq (p->name, nextchar, nameend - nextchar))
+       if (!strncmp (p->name, nextchar, nameend - nextchar))
          {
            if ((unsigned int) (nameend - nextchar)
                == (unsigned int) strlen (p->name))
@@ -839,7 +839,7 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
        /* Test all long options for either exact match
           or abbreviated matches.  */
        for (p = longopts, option_index = 0; p->name; p++, option_index++)
-         if (strneq (p->name, nextchar, nameend - nextchar))
+         if (!strncmp (p->name, nextchar, nameend - nextchar))
            {
              if ((unsigned int) (nameend - nextchar) == strlen (p->name))
                {