summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bind/lib/isc/sha2.c
diff options
context:
space:
mode:
authorflorian <florian@openbsd.org>2020-01-20 18:49:45 +0000
committerflorian <florian@openbsd.org>2020-01-20 18:49:45 +0000
commit855da32c6e5a8968082ab84ee46c8b38fbde74ba (patch)
treec99d5941e500bbf4e4bea30ebdf6977740b96daf /usr.sbin/bind/lib/isc/sha2.c
parentRemove various unused lib/isc bits. (diff)
downloadwireguard-openbsd-855da32c6e5a8968082ab84ee46c8b38fbde74ba.tar.xz
wireguard-openbsd-855da32c6e5a8968082ab84ee46c8b38fbde74ba.zip
As millert@ points out we can replace isc_string_touint64 with
strtoull(3) and then get rid of lib/isc/string.c OK millert
Diffstat (limited to 'usr.sbin/bind/lib/isc/sha2.c')
-rw-r--r--usr.sbin/bind/lib/isc/sha2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bind/lib/isc/sha2.c b/usr.sbin/bind/lib/isc/sha2.c
index 5a947692d66..2444f663848 100644
--- a/usr.sbin/bind/lib/isc/sha2.c
+++ b/usr.sbin/bind/lib/isc/sha2.c
@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: sha2.c,v 1.7 2020/01/09 18:17:19 florian Exp $ */
+/* $Id: sha2.c,v 1.8 2020/01/20 18:49:46 florian Exp $ */
/* $FreeBSD: src/sys/crypto/sha2/sha2.c,v 1.2.2.2 2002/03/05 08:36:47 ume Exp $ */
/* $KAME: sha2.c,v 1.8 2001/11/08 01:07:52 itojun Exp $ */
@@ -61,7 +61,7 @@
#include <isc/platform.h>
#include <isc/safe.h>
#include <isc/sha2.h>
-#include <isc/string.h>
+#include <string.h>
#include <isc/util.h>
#if defined(ISC_PLATFORM_OPENSSLHASH) && !defined(LIBRESSL_VERSION_NUMBER)