rc4: fix preprocessor indentation
authorPauli <paul.dale@oracle.com>
Mon, 13 Jan 2020 23:03:55 +0000 (09:03 +1000)
committerPauli <paul.dale@oracle.com>
Wed, 15 Jan 2020 21:07:27 +0000 (07:07 +1000)
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/10834)

include/openssl/rc4.h

index 6a3a191abf7ba686e1884c3aab9bf2b3a2c97ffc..22c76863e7d69b6f7d29fd62121974e96ec7d516 100644 (file)
 # include <openssl/opensslconf.h>
 
 # ifndef OPENSSL_NO_RC4
-# include <stddef.h>
-#ifdef  __cplusplus
+#  include <stddef.h>
+#  ifdef  __cplusplus
 extern "C" {
-#endif
+#  endif
 
 typedef struct rc4_key_st {
     RC4_INT x, y;
@@ -34,9 +34,9 @@ void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data);
 void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
          unsigned char *outdata);
 
-# ifdef  __cplusplus
+#  ifdef  __cplusplus
 }
-# endif
+#  endif
 # endif
 
 #endif