mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-02-05 19:20:30 +01:00
Brown bag commit to fix 957e8d (arc4random_buf() support)
- typo in #ifdef check - also need to add AC_CHECK_FUNCS([arc4random_buf]) Reported-by Eric Engestrom. Thanks Reviewed-by: Adam Jackson <ajax@redhat.com> Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
This commit is contained in:
parent
dc7ceda90f
commit
386fbbe410
2 changed files with 2 additions and 1 deletions
|
|
@ -226,6 +226,7 @@ AC_REPLACE_FUNCS([reallocarray strcasecmp strcasestr strlcat strlcpy strndup\
|
|||
AM_CONDITIONAL(POLL, [test "x$ac_cv_func_poll" = "xyes"])
|
||||
|
||||
AC_CHECK_LIB([bsd], [arc4random_buf])
|
||||
AC_CHECK_FUNCS([arc4random_buf])
|
||||
|
||||
AC_CHECK_DECLS([program_invocation_short_name], [], [], [[#include <errno.h>]])
|
||||
|
||||
|
|
|
|||
|
|
@ -305,7 +305,7 @@ GenerateAuthorization(unsigned name_length,
|
|||
void
|
||||
GenerateRandomData(int len, char *buf)
|
||||
{
|
||||
#ifdef HAVE_ARC4RANDOMBUF
|
||||
#ifdef HAVE_ARC4RANDOM_BUF
|
||||
arc4random_buf(buf, len);
|
||||
#else
|
||||
int fd;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue