brane 2002/12/15 18:42:19
Modified: misc/win32 rand.c
Log:
Update the definition apr_generate_random_bytes to match jorton's prototype
change of 2002-12-13.
Revision Changes Path
1.18 +1 -1 apr/misc/win32/rand.c
Index: rand.c
===================================================================
RCS file: /home/cvs/apr/misc/win32/rand.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- rand.c 17 Jul 2002 20:53:25 -0000 1.17
+++ rand.c 16 Dec 2002 02:42:19 -0000 1.18
@@ -61,7 +61,7 @@
APR_DECLARE(apr_status_t) apr_generate_random_bytes(unsigned char * buf,
- int length)
+ apr_size_t length)
{
HCRYPTPROV hProv;
apr_status_t res = APR_SUCCESS;
|