diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-05 01:17:26 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-05 01:17:26 +0000 |
commit | ac2054a3a4922bce51c99554baec21228f55c06b (patch) | |
tree | ab8a565134d77b74421199bf3777b41e9ef2d6d5 /sys | |
parent | c842948b92aa38a4217896f2cb0d6dbb516e4bde (diff) |
stupid typo, going to bed in penance
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/in_pcb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c index 18858fbe22f..bfdff60f4ae 100644 --- a/sys/netinet/in_pcb.c +++ b/sys/netinet/in_pcb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in_pcb.c,v 1.10 1996/08/05 01:16:45 deraadt Exp $ */ +/* $OpenBSD: in_pcb.c,v 1.11 1996/08/05 01:17:25 deraadt Exp $ */ /* $NetBSD: in_pcb.c,v 1.25 1996/02/13 23:41:53 christos Exp $ */ /* @@ -165,7 +165,7 @@ in_pcbbind(v, nam) if (ntohs(lport) < IPPORT_RESERVED && (error = suser(p->p_ucred, &p->p_acflag))) return (EACCES); - if (so->so_ucred->cr_uid) + if (so->so_ucred->cr_uid) { t = in_pcblookup(table, zeroin_addr, 0, sin->sin_addr, lport, INPLOOKUP_WILDCARD); if (t && (so->so_ucred->cr_uid != |