summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_sig.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/kern_sig.c')
-rw-r--r--sys/kern/kern_sig.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c
index f4a14c3..3225754 100644
--- a/sys/kern/kern_sig.c
+++ b/sys/kern/kern_sig.c
@@ -1674,8 +1674,8 @@ kill(td, uap)
register struct proc *p;
int error;
- AUDIT_ARG(signum, uap->signum);
- AUDIT_ARG(pid, uap->pid);
+ AUDIT_ARG_SIGNUM(uap->signum);
+ AUDIT_ARG_PID(uap->pid);
if ((u_int)uap->signum > _SIG_MAXSIG)
return (EINVAL);
@@ -1685,7 +1685,7 @@ kill(td, uap)
if ((p = zpfind(uap->pid)) == NULL)
return (ESRCH);
}
- AUDIT_ARG(process, p);
+ AUDIT_ARG_PROCESS(p);
error = p_cansignal(td, p, uap->signum);
if (error == 0 && uap->signum)
psignal(p, uap->signum);
@@ -1717,8 +1717,8 @@ okillpg(td, uap)
register struct okillpg_args *uap;
{
- AUDIT_ARG(signum, uap->signum);
- AUDIT_ARG(pid, uap->pgid);
+ AUDIT_ARG_SIGNUM(uap->signum);
+ AUDIT_ARG_PID(uap->pgid);
if ((u_int)uap->signum > _SIG_MAXSIG)
return (EINVAL);
OpenPOWER on IntegriCloud