From: Joshua Colp Date: Mon, 26 Nov 2007 15:28:13 +0000 (+0000) Subject: Make the behavior of using /dev/urandom for random numbers the same as random(). X-Git-Tag: 1.6.0-beta1~3^2~670 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1b79aa278cf859c4980295df6f291375ff39c30;p=thirdparty%2Fasterisk.git Make the behavior of using /dev/urandom for random numbers the same as random(). (closes issue #11348) Reported by: sperreault Patches: ast_random2.diff uploaded by sperreault (license 252) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89576 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/utils.c b/main/utils.c index 97abe80ae4..afddae6bf9 100644 --- a/main/utils.c +++ b/main/utils.c @@ -1138,8 +1138,10 @@ long int ast_random(void) #ifdef HAVE_DEV_URANDOM if (dev_urandom_fd >= 0) { int read_res = read(dev_urandom_fd, &res, sizeof(res)); - if (read_res > 0) - return res < 0 ? ~res : res; + if (read_res > 0) { + res = res < 0 ? ~res : res; + return res % ((long)RAND_MAX + 1); + } } #endif #ifdef linux