]> granicus.if.org Git - postgresql/commitdiff
Remove MinGW readdir/errno bug workaround fixed on 2003-10-10
authorBruce Momjian <bruce@momjian.us>
Fri, 21 Mar 2014 17:47:37 +0000 (13:47 -0400)
committerBruce Momjian <bruce@momjian.us>
Fri, 21 Mar 2014 17:47:37 +0000 (13:47 -0400)
contrib/pg_archivecleanup/pg_archivecleanup.c
contrib/pg_standby/pg_standby.c
src/backend/storage/file/fd.c
src/bin/initdb/initdb.c
src/bin/pg_basebackup/pg_receivexlog.c
src/bin/pg_dump/pg_backup_directory.c
src/bin/pg_resetxlog/pg_resetxlog.c
src/common/pgfnames.c
src/port/pgcheckdir.c

index 039829e0049e315125f634e4576c5ae52de0608f..39348c6db107ccee2caa0441d9d9a0171c204d13 100644 (file)
@@ -165,12 +165,6 @@ CleanupPriorWALFiles(void)
                        }
                }
 
-#ifdef WIN32
-               /* Bug in old Mingw dirent.c;  fixed in mingw-runtime-3.2, 2003-10-10 */
-               if (GetLastError() == ERROR_NO_MORE_FILES)
-                       errno = 0;
-#endif
-
                if (errno)
                        fprintf(stderr, "%s: could not read archive location \"%s\": %s\n",
                                        progname, archiveLocation, strerror(errno));
index 9134d649cd6e0e003c5e1e0d9267ff2e78c15249..d6b169264c3430d8dfe4c3072fe87539fbab8aee 100644 (file)
@@ -284,12 +284,6 @@ CustomizableCleanupPriorWALFiles(void)
                                }
                        }
 
-#ifdef WIN32
-                       /* Bug in old Mingw dirent.c;  fixed in mingw-runtime-3.2, 2003-10-10 */
-                       if (GetLastError() == ERROR_NO_MORE_FILES)
-                               errno = 0;
-#endif
-
                        if (errno)
                                fprintf(stderr, "%s: could not read archive location \"%s\": %s\n",
                                                progname, archiveLocation, strerror(errno));
index 5158cfe806f6afe193ec36efeec9cf81b26608d6..42dbe87ca4bd5e8440661e018f48b05dcb4a1d87 100644 (file)
@@ -1956,12 +1956,6 @@ ReadDir(DIR *dir, const char *dirname)
        if ((dent = readdir(dir)) != NULL)
                return dent;
 
-#ifdef WIN32
-       /* Bug in old Mingw dirent.c;  fixed in mingw-runtime-3.2, 2003-10-10 */
-       if (GetLastError() == ERROR_NO_MORE_FILES)
-               errno = 0;
-#endif
-
        if (errno)
                ereport(ERROR,
                                (errcode_for_file_access(),
index ce08494f492dd609b1e5e7cf45eb8f35f184b560..b1dd1fe52fda410f4856f50b821e2da57924d8ea 100644 (file)
@@ -564,12 +564,6 @@ walkdir(char *path, void (*action) (char *fname, bool isdir))
                        (*action) (subpath, false);
        }
 
-#ifdef WIN32
-       /* Bug in old Mingw dirent.c;  fixed in mingw-runtime-3.2, 2003-10-10 */
-       if (GetLastError() == ERROR_NO_MORE_FILES)
-               errno = 0;
-#endif
-
        if (errno)
        {
                fprintf(stderr, _("%s: could not read directory \"%s\": %s\n"),
index 1eda4b6b002c98198ebd987da441f3d708d99b1b..406610a86254a8a4b6cb5c923943556aa8bc3ca0 100644 (file)
@@ -209,12 +209,6 @@ FindStreamingStart(uint32 *tli)
                }
        }
 
-#ifdef WIN32
-       /* Bug in old Mingw dirent.c;  fixed in mingw-runtime-3.2, 2003-10-10 */
-       if (GetLastError() == ERROR_NO_MORE_FILES)
-               errno = 0;
-#endif
-
        if (errno)
        {
                fprintf(stderr, _("%s: could not read directory \"%s\": %s\n"),
index b441ceaa46bbc2e01c5fd889567b0fd46ddb2947..0fae53b3468f2be38c956686ad7e709fe867f80a 100644 (file)
@@ -186,12 +186,6 @@ InitArchiveFmt_Directory(ArchiveHandle *AH)
                                        }
                                }
 
-#ifdef WIN32
-                               /* Bug in old Mingw dirent.c;  fixed in mingw-runtime-3.2, 2003-10-10 */
-                               if (GetLastError() == ERROR_NO_MORE_FILES)
-                                       errno = 0;
-#endif
-
                                if (errno)
                                        exit_horribly(modulename, "could not read directory \"%s\": %s\n",
                                                                  ctx->directory, strerror(errno));
index af2cec7e932cd6d392b4968f84fa2831739843d0..b5d480e7b807fed55153f6b3f7eef715fcf7028d 100644 (file)
@@ -845,12 +845,6 @@ FindEndOfXLOG(void)
                }
        }
 
-#ifdef WIN32
-       /* Bug in old Mingw dirent.c;  fixed in mingw-runtime-3.2, 2003-10-10 */
-       if (GetLastError() == ERROR_NO_MORE_FILES)
-               errno = 0;
-#endif
-
        if (errno)
        {
                fprintf(stderr, _("%s: could not read directory \"%s\": %s\n"),
@@ -908,12 +902,6 @@ KillExistingXLOG(void)
                }
        }
 
-#ifdef WIN32
-       /* Bug in old Mingw dirent.c;  fixed in mingw-runtime-3.2, 2003-10-10 */
-       if (GetLastError() == ERROR_NO_MORE_FILES)
-               errno = 0;
-#endif
-
        if (errno)
        {
                fprintf(stderr, _("%s: could not read directory \"%s\": %s\n"),
@@ -966,12 +954,6 @@ KillExistingArchiveStatus(void)
                }
        }
 
-#ifdef WIN32
-       /* Bug in old Mingw dirent.c;  fixed in mingw-runtime-3.2, 2003-10-10 */
-       if (GetLastError() == ERROR_NO_MORE_FILES)
-               errno = 0;
-#endif
-
        if (errno)
        {
                fprintf(stderr, _("%s: could not read directory \"%s\": %s\n"),
index 51a848a1fdb5e017e29ed19644625b568268a059..016da325142ce675eefa5ec477f44609e3b8585d 100644 (file)
@@ -64,12 +64,6 @@ pgfnames(const char *path)
                }
        }
 
-#ifdef WIN32
-       /* Bug in old Mingw dirent.c;  fixed in mingw-runtime-3.2, 2003-10-10 */
-       if (GetLastError() == ERROR_NO_MORE_FILES)
-               errno = 0;
-#endif
-
        if (errno)
        {
 #ifndef FRONTEND
index 502d4f377d9b3f67d87e46570697f72edb17ea53..07f250e9d4a0fe9c93bb31bd21ae6f04c1059d77 100644 (file)
@@ -64,12 +64,6 @@ pg_check_dir(const char *dir)
                }
        }
 
-#ifdef WIN32
-       /* Bug in old Mingw dirent.c;  fixed in mingw-runtime-3.2, 2003-10-10 */
-       if (GetLastError() == ERROR_NO_MORE_FILES)
-               errno = 0;
-#endif
-
        if (errno || closedir(chkdir))
                result = -1;                    /* some kind of I/O error? */