From: Laszlo Ersek Date: Thu, 9 May 2019 19:29:48 +0000 (+0200) Subject: crypto/evp/evp_key.c: #define BUFSIZ if doesn't #define it X-Git-Tag: openssl-3.0.0-alpha1~2035 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=2e9d61ecd81a6a512a0700486ccc1b3784b4c969 crypto/evp/evp_key.c: #define BUFSIZ if doesn't #define it CLA: trivial Fixes #8904 Commit 48feaceb53fa ("Remove the possibility to disable the UI module entirely", 2017-07-03) made the BUFSIZ references in "evp_key.c" unconditional, by deleting the preprocessing directive "#ifndef OPENSSL_NO_UI". This breaks the build when compiling OpenSSL for edk2 (OPENSSL_SYS_UEFI), because edk2's doesn't #define BUFSIZ. Provide a fallback definition, like we do in "crypto/ui/ui_util.c" (from commit 984d6c605216, "Fix no-stdio build", 2015-09-29). Signed-off-by: Laszlo Ersek Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/8922) --- diff --git a/crypto/evp/evp_key.c b/crypto/evp/evp_key.c index fc65b4c44d..3aa49aa47e 100644 --- a/crypto/evp/evp_key.c +++ b/crypto/evp/evp_key.c @@ -14,6 +14,10 @@ #include #include +#ifndef BUFSIZ +# define BUFSIZ 256 +#endif + /* should be init to zeros. */ static char prompt_string[80];