From: Pauli Date: Fri, 18 Jun 2021 07:44:44 +0000 (+1000) Subject: include: replace tabs with spaces in headers X-Git-Tag: openssl-3.0.0-beta2~279 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e69bde88e44c431412d7cf9f9361b84c95fe549d;p=thirdparty%2Fopenssl.git include: replace tabs with spaces in headers Reviewed-by: Richard Levitte Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/15824) --- diff --git a/include/crypto/punycode.h b/include/crypto/punycode.h index f47eded262a..a8f128daade 100644 --- a/include/crypto/punycode.h +++ b/include/crypto/punycode.h @@ -12,10 +12,10 @@ # pragma once int ossl_punycode_decode ( - const char *pEncoded, - const size_t enc_len, - unsigned int *pDecoded, - unsigned int *pout_length + const char *pEncoded, + const size_t enc_len, + unsigned int *pDecoded, + unsigned int *pout_length ); int ossl_a2ulabel(const char *in, char *out, size_t *outlen); diff --git a/include/openssl/configuration.h.in b/include/openssl/configuration.h.in index e4d4f526b3b..b84dc1dfe3c 100644 --- a/include/openssl/configuration.h.in +++ b/include/openssl/configuration.h.in @@ -27,9 +27,9 @@ extern "C" { {- if (@{$config{openssl_sys_defines}}) { foreach (@{$config{openssl_sys_defines}}) { - $OUT .= "# ifndef $_\n"; - $OUT .= "# define $_ 1\n"; - $OUT .= "# endif\n"; + $OUT .= "# ifndef $_\n"; + $OUT .= "# define $_ 1\n"; + $OUT .= "# endif\n"; } } foreach (@{$config{openssl_api_defines}}) { @@ -38,9 +38,9 @@ extern "C" { } if (@{$config{openssl_feature_defines}}) { foreach (@{$config{openssl_feature_defines}}) { - $OUT .= "# ifndef $_\n"; - $OUT .= "# define $_\n"; - $OUT .= "# endif\n"; + $OUT .= "# ifndef $_\n"; + $OUT .= "# define $_\n"; + $OUT .= "# endif\n"; } } "";