Add missing includes and correct argument to sysctlbyname

PR:		misc/120274
MFC after:	1 week
This commit is contained in:
matteo 2008-02-05 08:07:19 +00:00
parent cd7d07a63f
commit 6c5e26a705
2 changed files with 4 additions and 1 deletions

View File

@ -31,6 +31,8 @@
* zero all the stats or just the timing stuff.
*/
#include <stdio.h>
#include <stdlib.h>
#include <strings.h>
#include <sys/types.h>
#include <sys/sysctl.h>
@ -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) {

View File

@ -93,6 +93,7 @@
#include <sys/mman.h>
#include <paths.h>
#include <stdlib.h>
#include <string.h>
#include <sys/sysctl.h>
#include <sys/time.h>