]> git.sur5r.net Git - openldap/commitdiff
ITS#8280 Fix Windows EOL in test output
authorHoward Chu <hyc@openldap.org>
Tue, 20 Oct 2015 23:46:01 +0000 (00:46 +0100)
committerHoward Chu <hyc@openldap.org>
Tue, 20 Oct 2015 23:46:01 +0000 (00:46 +0100)
tests/progs/ldif-filter.c

index 1bdb37cac9dacc0ac3b13e03612ea9e0c2000754..cf9d2573942415752c17ee7a5850110f0d572408 100644 (file)
@@ -21,6 +21,9 @@
 #include <ac/stdlib.h>
 #include <ac/string.h>
 #include <ac/unistd.h>
+#ifdef _WIN32
+#include <fcntl.h>
+#endif
 
 #define DEFAULT_SPECS "ndb=a,null=n"
 
@@ -233,6 +236,9 @@ main( int argc, char **argv )
                backend = "";
        }
 
+#ifdef _WIN32
+       _setmode(1, _O_BINARY); /* don't convert \n to \r\n on stdout */
+#endif
        flags = get_flags( backend, specs );
        filter_stdin( flags ? flags : get_flags( backend, DEFAULT_SPECS ));
        if ( fclose( stdout ) == EOF ) {