commit 21b4a5163ce61f351f95e10eda89a312190476ce from: Omar Polo date: Wed Aug 23 19:13:46 2023 UTC comment out seed_from_prngd it's not used (we define OPENSSL_PRNG_ONLY) and fails the build with -Werror. Keep the function commented instead of deleting it just in case we need to undefine OPENSSL_PRNG_ONLY in the future. commit - 258131b1b60f657acfcc75d5416e859806de1415 commit + 21b4a5163ce61f351f95e10eda89a312190476ce blob - dc338844076d86d1fc83c8f5e10e340f11548d0e blob + 6a46b280913e335db942d3924037cf9611e61b94 --- compat/getentropy.c +++ compat/getentropy.c @@ -41,11 +41,13 @@ int _ssh_compat_getentropy(void *, size_t); +#if 0 static int seed_from_prngd(unsigned char *buf, size_t bytes) { return -1; } +#endif int _ssh_compat_getentropy(void *s, size_t len)