diff options
author | 2015-02-10 09:50:12 +0000 | |
---|---|---|
committer | 2015-02-10 09:50:12 +0000 | |
commit | 6aa2366fbf73e74b5dd842fc4419dc0ff556f271 (patch) | |
tree | d8d93c7e2bddd3d521321c2c2f830ffacfc2ba25 /lib/libssl | |
parent | Specifying the port is non-optional for (non-TLS) syslog over TCP, ok bluhm@ (diff) | |
download | wireguard-openbsd-6aa2366fbf73e74b5dd842fc4419dc0ff556f271.tar.xz wireguard-openbsd-6aa2366fbf73e74b5dd842fc4419dc0ff556f271.zip |
Remove unnecessary include of assert.h
Diffstat (limited to 'lib/libssl')
-rw-r--r-- | lib/libssl/src/crypto/bn/bn_ctx.c | 3 | ||||
-rw-r--r-- | lib/libssl/src/crypto/bn/bn_gf2m.c | 3 | ||||
-rw-r--r-- | lib/libssl/src/crypto/conf/conf_api.c | 3 | ||||
-rw-r--r-- | lib/libssl/src/crypto/evp/e_aes.c | 3 | ||||
-rw-r--r-- | lib/libssl/src/crypto/evp/e_camellia.c | 3 |
5 files changed, 5 insertions, 10 deletions
diff --git a/lib/libssl/src/crypto/bn/bn_ctx.c b/lib/libssl/src/crypto/bn/bn_ctx.c index 0bd523c2d45..eb2d6a43b38 100644 --- a/lib/libssl/src/crypto/bn/bn_ctx.c +++ b/lib/libssl/src/crypto/bn/bn_ctx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_ctx.c,v 1.13 2014/07/11 08:44:47 jsing Exp $ */ +/* $OpenBSD: bn_ctx.c,v 1.14 2015/02/10 09:50:12 miod Exp $ */ /* Written by Ulf Moeller for the OpenSSL project. */ /* ==================================================================== * Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved. @@ -60,7 +60,6 @@ #endif #endif -#include <assert.h> #include <stdio.h> #include <string.h> diff --git a/lib/libssl/src/crypto/bn/bn_gf2m.c b/lib/libssl/src/crypto/bn/bn_gf2m.c index 4544369248d..e84729bdadd 100644 --- a/lib/libssl/src/crypto/bn/bn_gf2m.c +++ b/lib/libssl/src/crypto/bn/bn_gf2m.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_gf2m.c,v 1.17 2015/02/09 15:49:22 jsing Exp $ */ +/* $OpenBSD: bn_gf2m.c,v 1.18 2015/02/10 09:50:12 miod Exp $ */ /* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * @@ -88,7 +88,6 @@ * */ -#include <assert.h> #include <limits.h> #include <stdio.h> diff --git a/lib/libssl/src/crypto/conf/conf_api.c b/lib/libssl/src/crypto/conf/conf_api.c index 56a4f249ad8..2f68de8e3fd 100644 --- a/lib/libssl/src/crypto/conf/conf_api.c +++ b/lib/libssl/src/crypto/conf/conf_api.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf_api.c,v 1.12 2015/02/07 13:19:15 doug Exp $ */ +/* $OpenBSD: conf_api.c,v 1.13 2015/02/10 09:50:12 miod Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -63,7 +63,6 @@ # define NDEBUG #endif -#include <assert.h> #include <stdlib.h> #include <string.h> #include <unistd.h> diff --git a/lib/libssl/src/crypto/evp/e_aes.c b/lib/libssl/src/crypto/evp/e_aes.c index bb3b420a3b8..85591cfcb72 100644 --- a/lib/libssl/src/crypto/evp/e_aes.c +++ b/lib/libssl/src/crypto/evp/e_aes.c @@ -1,4 +1,4 @@ -/* $OpenBSD: e_aes.c,v 1.26 2014/10/22 13:02:04 jsing Exp $ */ +/* $OpenBSD: e_aes.c,v 1.27 2015/02/10 09:50:12 miod Exp $ */ /* ==================================================================== * Copyright (c) 2001-2011 The OpenSSL Project. All rights reserved. * @@ -49,7 +49,6 @@ * */ -#include <assert.h> #include <stdlib.h> #include <string.h> diff --git a/lib/libssl/src/crypto/evp/e_camellia.c b/lib/libssl/src/crypto/evp/e_camellia.c index 4868c98c5df..e3424cfe94a 100644 --- a/lib/libssl/src/crypto/evp/e_camellia.c +++ b/lib/libssl/src/crypto/evp/e_camellia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: e_camellia.c,v 1.6 2014/07/10 22:45:57 jsing Exp $ */ +/* $OpenBSD: e_camellia.c,v 1.7 2015/02/10 09:50:12 miod Exp $ */ /* ==================================================================== * Copyright (c) 2006 The OpenSSL Project. All rights reserved. * @@ -53,7 +53,6 @@ * */ -#include <assert.h> #include <string.h> #include <openssl/opensslconf.h> |