* flip.c: [HAVE_SYS_TYPES_H] Really include <sys/types.h>. The
authorBen Pfaff <blp@gnu.org>
Tue, 5 Jul 2005 01:26:35 +0000 (01:26 +0000)
committerBen Pfaff <blp@gnu.org>
Tue, 5 Jul 2005 01:26:35 +0000 (01:26 +0000)
preprocessor test for sys/types.h was accidentally inverted.  This was
bug 12789.

src/ChangeLog
src/flip.c

index 3b579e7cc1d64137814fda1c14a4f4bedc6b20d7..fbae824189716c9790bfcfbb9ed20bbed4b6409b 100644 (file)
@@ -1,3 +1,9 @@
+Mon Jul  4 18:01:15 2005  Ben Pfaff  <blp@gnu.org>
+
+       * flip.c: [HAVE_SYS_TYPES_H] Really include <sys/types.h>.  The
+       preprocessor test for sys/types.h was accidentally inverted.  This
+       was bug 12789.
+
 Sun Jul  3 22:47:39 2005  Ben Pfaff  <blp@gnu.org>
 
        * get.c: (cmd_match_files) Fix memory leak on `by' and on
index b352f1b23301f4689e449fe61ed1cb9cde1c081e..37b461db375cab18d2a25a9e57b2b40b6c82812b 100644 (file)
@@ -38,7 +38,7 @@
 #include "var.h"
 #include "vfm.h"
 
-#ifndef HAVE_SYS_TYPES_H
+#ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
 #endif