summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgreen <green@FreeBSD.org>1999-07-12 18:58:23 +0000
committergreen <green@FreeBSD.org>1999-07-12 18:58:23 +0000
commit78204b1ba9e66d92adec179950d664bd0afb20fd (patch)
treee78b4f553f1d55111c8182b80d6ec456e7d0db4c
parent258f51ed776fe494f347d00834f5fbc2bbd4742c (diff)
downloadFreeBSD-src-78204b1ba9e66d92adec179950d664bd0afb20fd.zip
FreeBSD-src-78204b1ba9e66d92adec179950d664bd0afb20fd.tar.gz
Correct a mistake in so_cred changes. In practice, I don't think that it
would make a difference. However, my previous diff _did_ change the behavior in some way (not necessarily break it), so I'm fixing it. Found by: bde Submitted by: bde
-rw-r--r--sys/netinet/in_pcb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c
index 87d8c45..bc48c3b 100644
--- a/sys/netinet/in_pcb.c
+++ b/sys/netinet/in_pcb.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)in_pcb.c 8.4 (Berkeley) 5/24/95
- * $Id: in_pcb.c,v 1.50 1999/06/17 23:54:50 green Exp $
+ * $Id: in_pcb.c,v 1.51 1999/06/25 23:46:47 pb Exp $
*/
#include <sys/param.h>
@@ -202,7 +202,7 @@ in_pcbbind(inp, nam, p)
return (EACCES);
if (p && p->p_prison)
prison = 1;
- if (so->so_cred &&
+ if (so->so_cred && so->so_cred->p_ruid != 0 &&
!IN_MULTICAST(ntohl(sin->sin_addr.s_addr))) {
t = in_pcblookup_local(inp->inp_pcbinfo,
sin->sin_addr, lport,
OpenPOWER on IntegriCloud