From: Yu Watanabe Date: Sun, 8 Jun 2025 01:04:45 +0000 (+0900) Subject: libcrypt-util: include random-util.h X-Git-Tag: v258-rc1~352^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14dc330c9c3afdec686bac6cdf528db4afc3e4aa;p=thirdparty%2Fsystemd.git libcrypt-util: include random-util.h Necessary for crypto_random_bytes(), which is used in the branch that HAVE_CRYPT_GENSALT_RA is false. Unfortunately, our CIs tested only the other branch. --- diff --git a/src/shared/libcrypt-util.c b/src/shared/libcrypt-util.c index 7c48b5e0d30..aa41cd4458e 100644 --- a/src/shared/libcrypt-util.c +++ b/src/shared/libcrypt-util.c @@ -21,6 +21,7 @@ #include "errno-util.h" #include "libcrypt-util.h" #include "log.h" +#include "random-util.h" #include "string-util.h" #include "strv.h"