From 9112a2a976c22d1b912a397882ead4b9bd437e51 Mon Sep 17 00:00:00 2001 From: Andrew Innes Date: Tue, 22 Aug 2000 21:20:07 +0000 Subject: [PATCH] (main) [WINDOWSNT]: Force binary mode for fileio. --- lib-src/movemail.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib-src/movemail.c b/lib-src/movemail.c index ba84b154831..3aee681b48b 100644 --- a/lib-src/movemail.c +++ b/lib-src/movemail.c @@ -95,9 +95,7 @@ Boston, MA 02111-1307, USA. */ implemented and used on Unix. */ //#define DISABLE_DIRECT_ACCESS -/* Ensure all file i/o is in binary mode. */ #include -int _fmode = _O_BINARY; #endif /* WINDOWSNT */ #ifdef USG @@ -194,6 +192,11 @@ main (argc, argv) # define ARGSTR "p" #endif /* MAIL_USE_POP */ +#ifdef WINDOWSNT + /* Ensure all file i/o is in binary mode. */ + _fmode = _O_BINARY; +#endif + delete_lockname = 0; while ((c = getopt (argc, argv, ARGSTR)) != EOF) -- 2.39.2