0ddc5a48dd
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/unbound#9bf72f2b9791186ed8cf9807178e945819d4f589
23 lines
614 B
Diff
23 lines
614 B
Diff
Index: unbound-1.5.0/compat/getentropy_linux.c
|
|
===================================================================
|
|
--- unbound-1.5.0.orig/compat/getentropy_linux.c
|
|
+++ unbound-1.5.0/compat/getentropy_linux.c
|
|
@@ -102,7 +102,7 @@ getentropy(void *buf, size_t len)
|
|
if (ret != -1)
|
|
return (ret);
|
|
|
|
-#ifdef CTL_MAXNAME
|
|
+#ifdef SYS__sysctl
|
|
/*
|
|
* Try to use sysctl CTL_KERN, KERN_RANDOM, RANDOM_UUID.
|
|
* sysctl is a failsafe API, so it guarantees a result. This
|
|
@@ -235,7 +235,7 @@ nodevrandom:
|
|
return -1;
|
|
}
|
|
|
|
-#ifdef CTL_MAXNAME
|
|
+#ifdef SYS__sysctl
|
|
static int
|
|
getentropy_sysctl(void *buf, size_t len)
|
|
{
|