PERFORCE change 104121 for review
Todd Miller
millert at FreeBSD.org
Tue Aug 15 21:13:31 UTC 2006
http://perforce.freebsd.org/chv.cgi?CH=104121
Change 104121 by millert at millert_g4tower on 2006/08/15 21:12:23
Boolean function cansignal() must return value FALSE rather
than an error code.
Affected files ...
.. //depot/projects/trustedbsd/sedarwin8/darwin/xnu/bsd/kern/kern_sig.c#2 edit
Differences ...
==== //depot/projects/trustedbsd/sedarwin8/darwin/xnu/bsd/kern/kern_sig.c#2 (text+ko) ====
@@ -286,7 +286,7 @@
error = mac_check_proc_signal(uc, q, signum);
if (error)
- return (error);
+ return (0);
#endif
/* you can signal yourself */
if (p == q)
More information about the trustedbsd-cvs
mailing list