mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-27 11:20:58 +01:00
Syscalls have at most 6 argument, not 5. See mmap(2) for example.
Previously the offset argument to mmap(2) would be bogus as we weren't reading it in. Approved by: re (kensmith)
This commit is contained in:
parent
e3020cfd3c
commit
3e1b607837
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=171645
@ -58,7 +58,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include "truss.h"
|
||||
#include "extern.h"
|
||||
|
||||
#define MAXARGS 5
|
||||
#define MAXARGS 6
|
||||
|
||||
static void
|
||||
usage(void)
|
||||
|
Loading…
Reference in New Issue
Block a user