rand_unix.c: Only enable hack for old FreeBSD versions on FreeBSD
authornia <nia@netbsd.org>
Thu, 30 Apr 2020 13:42:09 +0000 (14:42 +0100)
committerMatt Caswell <matt@openssl.org>
Mon, 4 May 2020 08:04:41 +0000 (09:04 +0100)
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/11689)

(cherry picked from commit 0c27ce7322e15a7e0733d48aaf9c8e1d1249541f)

crypto/rand/rand_unix.c

index 6d30d35b90ada4536405344b502dcc5d544aa51d..177ee6958f9d1394561580f5252e0f3740bbb117 100644 (file)
@@ -247,10 +247,12 @@ static ssize_t sysctl_random(char *buf, size_t buflen)
      * when the sysctl returns long and we want to request something not a
      * multiple of longs, which should never be the case.
      */
+#if   defined(__FreeBSD__)
     if (!ossl_assert(buflen % sizeof(long) == 0)) {
         errno = EINVAL;
         return -1;
     }
+#endif
 
     /*
      * On NetBSD before 4.0 KERN_ARND was an alias for KERN_URND, and only