]> git.eshelyaron.com Git - emacs.git/commitdiff
(main) [WINDOWSNT]: Force binary mode for fileio.
authorAndrew Innes <andrewi@gnu.org>
Tue, 22 Aug 2000 21:20:07 +0000 (21:20 +0000)
committerAndrew Innes <andrewi@gnu.org>
Tue, 22 Aug 2000 21:20:07 +0000 (21:20 +0000)
lib-src/movemail.c

index ba84b154831d280d74796c08b3d5255e8e6119f4..3aee681b48bf5b02ffe19de6067ab5caf69927b7 100644 (file)
@@ -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 <fcntl.h>
-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)