From 3012e650398a83e72f3ce63c3803e06765dae735 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Mon, 11 Apr 2016 13:59:31 +0100 Subject: Fix the no-posix-io option Fix a compile failure with no-posix-io Reviewed-by: Tim Hudson --- crypto/rand/randfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/rand') diff --git a/crypto/rand/randfile.c b/crypto/rand/randfile.c index a5b2b7f162..3ee6bf5a16 100644 --- a/crypto/rand/randfile.c +++ b/crypto/rand/randfile.c @@ -252,7 +252,7 @@ int RAND_write_file(const char *file) if (out == NULL) goto err; -#ifndef NO_CHMOD +#if !defined(NO_CHMOD) && !defined(OPENSSL_NO_POSIX_IO) chmod(file, 0600); #endif n = RAND_DATA; -- cgit v1.2.3