Revision: 76480
          http://sourceforge.net/p/brlcad/code/76480
Author:   brlcad
Date:     2020-07-25 04:54:37 +0000 (Sat, 25 Jul 2020)
Log Message:
-----------
don't specify more than binary mode since it can mismatch

Modified Paths:
--------------
    brlcad/trunk/src/fb/bw-fb.c

Modified: brlcad/trunk/src/fb/bw-fb.c
===================================================================
--- brlcad/trunk/src/fb/bw-fb.c 2020-07-25 04:50:43 UTC (rev 76479)
+++ brlcad/trunk/src/fb/bw-fb.c 2020-07-25 04:54:37 UTC (rev 76480)
@@ -159,7 +159,7 @@
            return 0;
        file_name = "-";
        infd = 0;
-       setmode(fileno(stdin), O_RDONLY|O_BINARY);
+       setmode(fileno(stdin), O_BINARY);
     } else {
        char *ifname;
        file_name = argv[bu_optind];

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to