]> granicus.if.org Git - graphviz/commitdiff
lefty SFfindFile: remove MSVC 'strncasecmp' fall back
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 19 Sep 2021 18:26:07 +0000 (11:26 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 25 Sep 2021 20:43:42 +0000 (13:43 -0700)
Commit 69f8a328e1d41b1cd799c715a8398ab0f096a8f4 replaced `SFstrncmp` with
`strncasecmp` or `_strnicmp` depending on whether we were compiling with a
non-MSVC compiler or with MSVC, respectively. However, this code is part of the
X11 GUI support and hence never built with MSVC. This commit removes this
unnecessary fall back which was dead code.

cmd/lefty/ws/x11/libfilereq/Path.c

index 17b3a48845f09d60a4643c9601a019896c5a9e1c..d19c8cc15ee57a834ee1e1160fff269bce45a891 100644 (file)
@@ -52,9 +52,7 @@ extern uid_t getuid ();
 
 #include <stdlib.h>
 #include <string.h>
-#ifndef _MSC_VER
 #include <strings.h>
-#endif
 
 #include "SFDecls.h"
 
@@ -212,11 +210,7 @@ static int SFfindFile (SFDir *dir, char *str) {
         name[last] = 0;
 
 #ifdef SEL_FILE_IGNORE_CASE
-#ifdef _MSC_VER
-        result = _strnicmp(str, name, len);
-#else
         result = strncasecmp(str, name, len);
-#endif
 #else /* def SEL_FILE_IGNORE_CASE */
         result = strncmp (str, name, len);
 #endif /* def SEL_FILE_IGNORE_CASE */
@@ -235,11 +229,7 @@ static int SFfindFile (SFDir *dir, char *str) {
         name[last] = 0;
 
 #ifdef SEL_FILE_IGNORE_CASE
-#ifdef _MSC_VER
-        result = _strnicmp(str, name, len);
-#else
         result = strncasecmp(str, name, len);
-#endif
 #else /* def SEL_FILE_IGNORE_CASE */
         result = strncmp (str, name, len);
 #endif /* def SEL_FILE_IGNORE_CASE */