# HG changeset patch # Parent 22c9fd1ccd3ac291aca2cc6eff8b85153de0ad66 lport is definitely 0 (we checked in the previous line), simplify expression. diff -r 22c9fd1ccd3a -r 666d8cc7a67a sys/netinet/in_pcb.c --- a/sys/netinet/in_pcb.c Fri Aug 17 16:37:46 2012 -0700 +++ b/sys/netinet/in_pcb.c Fri Aug 17 16:39:13 2012 -0700 @@ -332,8 +332,7 @@ if (inp->inp_lport != 0 || inp->inp_laddr.s_addr != INADDR_ANY) return (EINVAL); - anonport = inp->inp_lport == 0 && (nam == NULL || - ((struct sockaddr_in *)nam)->sin_port == 0); + anonport = nam == NULL || ((struct sockaddr_in *)nam)->sin_port == 0; error = in_pcbbind_setup(inp, nam, &inp->inp_laddr.s_addr, &inp->inp_lport, cred); if (error)