diff options
author | Guillaume Nault <g.nault@alphalink.fr> | 2018-11-13 16:47:32 +0100 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2018-11-16 10:42:34 +0300 |
commit | 9ccaedcacc5ab257b18bdac4e35d4ed96a3dad08 (patch) | |
tree | f9f6f3dfe42578abdc7d9db59070783128ce9a27 | |
parent | b280ed38a22d31ff3e14f91ec36ee51904a50c5b (diff) | |
download | accel-ppp-9ccaedcacc5ab257b18bdac4e35d4ed96a3dad08.tar.gz accel-ppp-9ccaedcacc5ab257b18bdac4e35d4ed96a3dad08.zip |
Remove redundant openssl include
The openssl/ssl.h header file is already included at the beginning of
this file.
Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
-rw-r--r-- | accel-pppd/main.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/accel-pppd/main.c b/accel-pppd/main.c index 5c05a8d8..2992026c 100644 --- a/accel-pppd/main.c +++ b/accel-pppd/main.c @@ -43,8 +43,6 @@ static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER; static pthread_cond_t cond = PTHREAD_COND_INITIALIZER; #ifdef CRYPTO_OPENSSL -#include <openssl/ssl.h> - static pthread_mutex_t *ssl_lock_cs; static unsigned long ssl_thread_id(void) |