]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
include: replace tabs with spaces in headers
authorPauli <pauli@openssl.org>
Fri, 18 Jun 2021 07:44:44 +0000 (17:44 +1000)
committerPauli <pauli@openssl.org>
Sat, 19 Jun 2021 05:51:12 +0000 (15:51 +1000)
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15824)

include/crypto/punycode.h
include/openssl/configuration.h.in

index f47eded262a06322b9bcd23cba6dc2a90919127a..a8f128daade68de85d8b81f7dfc85ef6054f88aa 100644 (file)
 # 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);
index e4d4f526b3b265de72bd35f1021a49f317e8abb1..b84dc1dfe3c9fcb4cef213bda86cd6951b528eca 100644 (file)
@@ -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";
       }
     }
     "";