diff options
| author | 2020-01-20 18:49:45 +0000 | |
|---|---|---|
| committer | 2020-01-20 18:49:45 +0000 | |
| commit | 855da32c6e5a8968082ab84ee46c8b38fbde74ba (patch) | |
| tree | c99d5941e500bbf4e4bea30ebdf6977740b96daf /usr.sbin/bind/lib/isc/unix/net.c | |
| parent | Remove various unused lib/isc bits. (diff) | |
| download | wireguard-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/unix/net.c')
| -rw-r--r-- | usr.sbin/bind/lib/isc/unix/net.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bind/lib/isc/unix/net.c b/usr.sbin/bind/lib/isc/unix/net.c index 5c0fb9c45ed..3441c9b3202 100644 --- a/usr.sbin/bind/lib/isc/unix/net.c +++ b/usr.sbin/bind/lib/isc/unix/net.c @@ -14,7 +14,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: net.c,v 1.11 2020/01/20 18:46:57 florian Exp $ */ +/* $Id: net.c,v 1.12 2020/01/20 18:49:46 florian Exp $ */ #include <config.h> @@ -38,7 +38,7 @@ #include <isc/netdb.h> #include <isc/once.h> #include <isc/strerror.h> -#include <isc/string.h> +#include <string.h> #include <isc/util.h> #ifndef ISC_SOCKADDR_LEN_T |
