summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/librandom/random_init.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/librandom/random_init.c b/src/librandom/random_init.c
index 4c9fce7..3ab5b08 100644
--- a/src/librandom/random_init.c
+++ b/src/librandom/random_init.c
@@ -27,10 +27,9 @@ int random_init ()
#ifdef SKALIBS_HASDEVURANDOM
char seed[160] ;
random_makeseed(seed) ;
- return openwritenclose_unsafe("/dev/urandom", seed, 160) ;
-#else
- return 1 ;
+ openwritenclose_unsafe("/dev/urandom", seed, 160) ;
#endif
+ return 1 ;
}
#else
@@ -54,7 +53,7 @@ int random_init ()
char seed[160] ;
random_makeseed(seed) ;
surf_init(&surf_here, seed) ;
- if (!openwritenclose_unsafe("/dev/urandom", seed, 160)) return 0 ;
+ openwritenclose_unsafe("/dev/urandom", seed, 160) ;
if (random_fd < 0)
{
fd = open_readb("/dev/urandom") ;