mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
Kill some spammage that seems to have gotten in through diffs from marcel's
local tree (which happens to have some things we don't :)
This commit is contained in:
parent
32277d8b6d
commit
2b635927ac
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=51492
@ -194,9 +194,9 @@ done:
|
||||
void
|
||||
ktrpsig(vp, sig, action, mask, code)
|
||||
struct vnode *vp;
|
||||
int sig, code;
|
||||
int sig;
|
||||
sig_t action;
|
||||
sigset_t *mask;
|
||||
int mask, code;
|
||||
{
|
||||
struct ktr_header *kth;
|
||||
struct ktr_psig kp;
|
||||
@ -206,7 +206,7 @@ ktrpsig(vp, sig, action, mask, code)
|
||||
kth = ktrgetheader(KTR_PSIG);
|
||||
kp.signo = (char)sig;
|
||||
kp.action = action;
|
||||
kp.mask = *mask;
|
||||
kp.mask = mask;
|
||||
kp.code = code;
|
||||
kth->ktr_buf = (caddr_t)&kp;
|
||||
kth->ktr_len = sizeof (struct ktr_psig);
|
||||
|
Loading…
Reference in New Issue
Block a user