From 6c5e26a705888de6ca7954104c08578cb679ea1f Mon Sep 17 00:00:00 2001 From: matteo Date: Tue, 5 Feb 2008 08:07:19 +0000 Subject: Add missing includes and correct argument to sysctlbyname PR: misc/120274 MFC after: 1 week --- tools/tools/crypto/cryptostats.c | 4 +++- tools/tools/crypto/cryptotest.c | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/tools/crypto/cryptostats.c b/tools/tools/crypto/cryptostats.c index 83b8a67..d1c6115 100644 --- a/tools/tools/crypto/cryptostats.c +++ b/tools/tools/crypto/cryptostats.c @@ -31,6 +31,8 @@ * zero all the stats or just the timing stuff. */ #include +#include +#include #include #include @@ -58,7 +60,7 @@ main(int argc, char *argv[]) size_t slen; slen = sizeof (stats); - if (sysctlbyname("kern.crypto_stats", &stats, &slen, NULL, NULL) < 0) + if (sysctlbyname("kern.crypto_stats", &stats, &slen, NULL, 0) < 0) err(1, "kern.cryptostats"); if (argc > 1 && strcmp(argv[1], "-z") == 0) { diff --git a/tools/tools/crypto/cryptotest.c b/tools/tools/crypto/cryptotest.c index 9bb93ea..13c52dd 100644 --- a/tools/tools/crypto/cryptotest.c +++ b/tools/tools/crypto/cryptotest.c @@ -93,6 +93,7 @@ #include #include #include +#include #include #include -- cgit v1.1