]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
tool_dirhie: drop superfluous `F_OK` fallback (Windows)
authorViktor Szakats <commit@vsz.me>
Wed, 7 Jan 2026 21:11:58 +0000 (22:11 +0100)
committerViktor Szakats <commit@vsz.me>
Wed, 7 Jan 2026 21:59:52 +0000 (22:59 +0100)
Follow-up to cb5ba675a73e7ef9e8ea0ce913bf15ba63f87d1f

Closes #20214

src/tool_dirhie.c

index e0eef03a11a33580809fb86c0bb366da0fae79ac..945d8796089d8d0f86e8bfeaa6d1262e07707e2c 100644 (file)
@@ -32,9 +32,6 @@
 
 #if defined(_WIN32) || (defined(MSDOS) && !defined(__DJGPP__))
 #  define mkdir(x, y) (mkdir)(x)
-#  ifndef F_OK
-#  define F_OK 0
-#  endif
 #endif
 
 static void show_dir_errno(const char *name)