Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Aug 2006 21:13:21 GMT
From:      Todd Miller <millert@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 104121 for review
Message-ID:  <200608152113.k7FLDLvf065302@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=104121

Change 104121 by millert@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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200608152113.k7FLDLvf065302>