diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2013-10-06 19:44:43 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2013-10-06 19:44:43 +0000 |
commit | b6289e10e1233931181e308c80e5b2d048f4d44d (patch) | |
tree | 7522d7b6656494453961c144747a9446632156c2 | |
parent | 067248cb73026df5d0df1fa039fe934a02d475a0 (diff) |
Tweak comment
-rw-r--r-- | sys/kern/kern_sig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c index ad10883575e..ae5500f6eec 100644 --- a/sys/kern/kern_sig.c +++ b/sys/kern/kern_sig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_sig.c,v 1.152 2013/06/01 04:05:26 tedu Exp $ */ +/* $OpenBSD: kern_sig.c,v 1.153 2013/10/06 19:44:42 guenther Exp $ */ /* $NetBSD: kern_sig.c,v 1.54 1996/04/22 01:38:32 christos Exp $ */ /* @@ -1079,7 +1079,7 @@ issignal(struct proc *p) /* * We should see pending but ignored signals - * only if P_TRACED was on when they were posted. + * only if PS_TRACED was on when they were posted. */ if (mask & p->p_sigacts->ps_sigignore && (pr->ps_flags & PS_TRACED) == 0) |