cipher/rndw32.c missing include?
Benjamin Lee
benjamin.lee@aspectdata.com
Thu, 20 Mar 2003 22:23:56 +1100
--LZvS9be/3tNcYl/X
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
On my mingw32 cross compilation setup, DISK_PERFORMANCE was undefined. It
looked as if an include was missing.
See patch attached.
--
Benjamin Lee
Melbourne, Australia "Always real." http://realthought.net/
__________________________________________________________________________
Genderplex, n.:
The predicament of a person in a restaurant who is unable to
determine his or her designated restroom (e.g., turtles and tortoises).
-- Rich Hall, "Sniglets"
--LZvS9be/3tNcYl/X
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="rnd-winiocth-inc.patch"
Index: cipher/rndw32.c
===================================================================
RCS file: /cvs/gnupg/libgcrypt/cipher/rndw32.c,v
retrieving revision 1.11
diff -u -r1.11 rndw32.c
--- cipher/rndw32.c 8 Jul 2002 00:31:21 -0000 1.11
+++ cipher/rndw32.c 20 Mar 2003 11:18:45 -0000
@@ -53,6 +53,7 @@
#include <string.h>
#include <windows.h>
+#include <winioctl.h>
#include "types.h"
--LZvS9be/3tNcYl/X--