Revert change for 11348 until it can be looked at even more.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89582 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Joshua Colp 18 years ago
parent 0b120dac62
commit 72a8e08bf5

@ -1140,7 +1140,7 @@ long int ast_random(void)
int read_res = read(dev_urandom_fd, &res, sizeof(res));
if (read_res > 0) {
res = res < 0 ? ~res : res;
return res % ((long)RAND_MAX + 1);
return res;
}
}
#endif

Loading…
Cancel
Save