summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-01-14 00:03:55 +0100
committerPauli <paul.dale@oracle.com>2020-01-15 22:07:27 +0100
commitae856791e264fed50b8ee5070fcee7af11e7691c (patch)
tree68aefb023c860fafccb890746e44a77260d8a39b
parentDeprecate the low level RC2 functions (diff)
downloadopenssl-ae856791e264fed50b8ee5070fcee7af11e7691c.tar.xz
openssl-ae856791e264fed50b8ee5070fcee7af11e7691c.zip
rc4: fix preprocessor indentation
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/10834)
-rw-r--r--include/openssl/rc4.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/openssl/rc4.h b/include/openssl/rc4.h
index 6a3a191abf..22c76863e7 100644
--- a/include/openssl/rc4.h
+++ b/include/openssl/rc4.h
@@ -19,10 +19,10 @@
# 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