From 1a54618ba6ec09b85f00f5ca12ef275b429ff18a Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Mon, 19 Mar 2018 11:29:06 +0000 Subject: Fix no-posix-io compile failure The fix in conf_include_test.c seems to be required because some compilers give an error if you give an empty string for the second argument to strpbrk(). It doesn't really make sense to send an empty string for this argument anyway, so make sure it has at least one character in it. Reviewed-by: Bernd Edlinger (Merged from https://github.com/openssl/openssl/pull/5666) --- apps/ocsp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apps/ocsp.c') diff --git a/apps/ocsp.c b/apps/ocsp.c index 82c11e8b60..ed2281a596 100644 --- a/apps/ocsp.c +++ b/apps/ocsp.c @@ -36,7 +36,8 @@ NON_EMPTY_TRANSLATION_UNIT # include # include -# if defined(OPENSSL_SYS_UNIX) && !defined(OPENSSL_NO_SOCK) +# if defined(OPENSSL_SYS_UNIX) && !defined(OPENSSL_NO_SOCK) \ + && !defined(OPENSSL_NO_POSIX_IO) # define OCSP_DAEMON # include # include -- cgit v1.2.3