summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
Diffstat (limited to 'misc')
-rw-r--r--misc/unix/rand.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/misc/unix/rand.c b/misc/unix/rand.c
index b44a3f964..3ecb37263 100644
--- a/misc/unix/rand.c
+++ b/misc/unix/rand.c
@@ -76,10 +76,6 @@
#if APR_HAS_RANDOM
-/* This tells the preprocessor to put quotes around the value. */
-#define XSTR(x) #x
-#define STR(x) XSTR(x)
-
APR_DECLARE(apr_status_t) apr_generate_random_bytes(unsigned char *buf,
int length)
{
@@ -88,7 +84,7 @@ APR_DECLARE(apr_status_t) apr_generate_random_bytes(unsigned char *buf,
int rnd, rc;
apr_size_t got, tot;
- if ((rnd = open(STR(DEV_RANDOM), O_RDONLY)) == -1)
+ if ((rnd = open(DEV_RANDOM, O_RDONLY)) == -1)
return errno;
for (tot=0; tot<length; tot += got) {