diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2024-03-27 12:14:36 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2024-03-27 12:14:36 +0000 |
commit | 476f26d6198a4cfb47a214b0c1c3fc5a754b7af9 (patch) | |
tree | a8ad1e5c533223cc6c4564a39d670dc8c35f92d0 | |
parent | 6fd284993f00b7cf1ed8d433bc9fe8105a46a9f4 (diff) |
Remove empty rc4_local.h include.
Discussed with tb@
-rw-r--r-- | lib/libcrypto/rc4/rc4_enc.c | 3 | ||||
-rw-r--r-- | lib/libcrypto/rc4/rc4_local.h | 5 | ||||
-rw-r--r-- | lib/libcrypto/rc4/rc4_skey.c | 4 |
3 files changed, 2 insertions, 10 deletions
diff --git a/lib/libcrypto/rc4/rc4_enc.c b/lib/libcrypto/rc4/rc4_enc.c index 3763bfa3cb7..fdae87219ef 100644 --- a/lib/libcrypto/rc4/rc4_enc.c +++ b/lib/libcrypto/rc4/rc4_enc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rc4_enc.c,v 1.18 2022/11/26 16:08:54 tb Exp $ */ +/* $OpenBSD: rc4_enc.c,v 1.19 2024/03/27 12:14:35 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -59,7 +59,6 @@ #include <endian.h> #include <openssl/rc4.h> -#include "rc4_local.h" /* RC4 as implemented from a posting from * Newsgroups: sci.crypt diff --git a/lib/libcrypto/rc4/rc4_local.h b/lib/libcrypto/rc4/rc4_local.h deleted file mode 100644 index 61d08a4d9df..00000000000 --- a/lib/libcrypto/rc4/rc4_local.h +++ /dev/null @@ -1,5 +0,0 @@ -/* $OpenBSD: rc4_local.h,v 1.1 2022/11/26 16:08:54 tb Exp $ */ - -#ifndef HEADER_RC4_LOCL_H -#define HEADER_RC4_LOCL_H -#endif diff --git a/lib/libcrypto/rc4/rc4_skey.c b/lib/libcrypto/rc4/rc4_skey.c index 5833c7bd07f..d0c45645a10 100644 --- a/lib/libcrypto/rc4/rc4_skey.c +++ b/lib/libcrypto/rc4/rc4_skey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rc4_skey.c,v 1.16 2023/07/28 10:35:14 tb Exp $ */ +/* $OpenBSD: rc4_skey.c,v 1.17 2024/03/27 12:14:35 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -58,8 +58,6 @@ #include <openssl/rc4.h> -#include "rc4_local.h" - /* RC4 as implemented from a posting from * Newsgroups: sci.crypt * From: sterndark@netcom.com (David Sterndark) |