summaryrefslogtreecommitdiffstats
path: root/crypto/rand/rand_win.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2002-02-21 13:07:44 +0000
committerBodo Möller <bodo@openssl.org>2002-02-21 13:07:44 +0000
commit3e563bcea70ed81ac3f578883458014fc6ee9855 (patch)
tree1db94585bd616cf6a9e0f339c826ea6b27725bcd /crypto/rand/rand_win.c
parent92f91ff48b320a81964d7347444683a734c53734 (diff)
disable '#ifdef DEBUG' sections
Diffstat (limited to 'crypto/rand/rand_win.c')
-rw-r--r--crypto/rand/rand_win.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/rand/rand_win.c b/crypto/rand/rand_win.c
index 5f71d2da26..c1b955b06f 100644
--- a/crypto/rand/rand_win.c
+++ b/crypto/rand/rand_win.c
@@ -316,7 +316,7 @@ int RAND_poll(void)
if (gen(hProvider, sizeof(buf), buf) != 0)
{
RAND_add(buf, sizeof(buf), 0);
-#ifdef DEBUG
+#if 0
printf("randomness from PROV_RSA_FULL\n");
#endif
}
@@ -329,7 +329,7 @@ int RAND_poll(void)
if (gen(hProvider, sizeof(buf), buf) != 0)
{
RAND_add(buf, sizeof(buf), sizeof(buf));
-#ifdef DEBUG
+#if 0
printf("randomness from PROV_INTEL_SEC\n");
#endif
}
@@ -515,7 +515,7 @@ int RAND_poll(void)
FreeLibrary(kernel);
}
-#ifdef DEBUG
+#if 0
printf("Exiting RAND_poll\n");
#endif