From: Richard Levitte Date: Tue, 25 Apr 2017 13:35:41 +0000 (+0200) Subject: Correct some badly formated preprocessor lines X-Git-Tag: OpenSSL_1_1_1-pre1~1682 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d88ab353d3f94031d56d2d6451695eac305c9738;p=openssl Correct some badly formated preprocessor lines Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/3304) --- diff --git a/apps/s_server.c b/apps/s_server.c index ebf772da07..d842fb8f53 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -2125,11 +2125,11 @@ static int sv_body(int s, int stype, int prot, unsigned char *context) struct timeval *timeoutp; #endif #ifndef OPENSSL_NO_DTLS - #ifndef OPENSSL_NO_SCTP +# ifndef OPENSSL_NO_SCTP int isdtls = (stype == SOCK_DGRAM || prot == IPPROTO_SCTP); - #else +# else int isdtls = (stype == SOCK_DGRAM); - #endif +# endif #endif buf = app_malloc(bufsize, "server buffer"); @@ -2163,11 +2163,11 @@ static int sv_body(int s, int stype, int prot, unsigned char *context) } #ifndef OPENSSL_NO_DTLS if (isdtls) { -#ifndef OPENSSL_NO_SCTP +# ifndef OPENSSL_NO_SCTP if (prot == IPPROTO_SCTP) sbio = BIO_new_dgram_sctp(s, BIO_NOCLOSE); else -#endif +# endif sbio = BIO_new_dgram(s, BIO_NOCLOSE); if (enable_timeouts) { diff --git a/crypto/srp/srp_vfy.c b/crypto/srp/srp_vfy.c index 29b7afcb04..20e4258427 100644 --- a/crypto/srp/srp_vfy.c +++ b/crypto/srp/srp_vfy.c @@ -474,7 +474,7 @@ static SRP_user_pwd *find_user(SRP_VBASE *vb, char *username) return NULL; } - #if OPENSSL_API_COMPAT < 0x10100000L +# if OPENSSL_API_COMPAT < 0x10100000L /* * DEPRECATED: use SRP_VBASE_get1_by_user instead. * This method ignores the configured seed and fails for an unknown user. @@ -485,7 +485,7 @@ SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username) { return find_user(vb, username); } -#endif +# endif /* * Ownership of the returned pointer is released to the caller. diff --git a/test/dtlsv1listentest.c b/test/dtlsv1listentest.c index 91d78e1301..dfbc7aebb8 100644 --- a/test/dtlsv1listentest.c +++ b/test/dtlsv1listentest.c @@ -13,7 +13,7 @@ #include #include #ifndef OPENSSL_NO_ENGINE - #include +# include #endif #include "e_os.h"