From: Andrew Innes Date: Tue, 22 Aug 2000 21:20:07 +0000 (+0000) Subject: (main) [WINDOWSNT]: Force binary mode for fileio. X-Git-Tag: emacs-pretest-21.0.90~2060 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9112a2a976c22d1b912a397882ead4b9bd437e51;p=emacs.git (main) [WINDOWSNT]: Force binary mode for fileio. --- 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)