diff options
-rw-r--r-- | sys/netinet/ip_divert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_divert.c b/sys/netinet/ip_divert.c index e3fab29..dab1864 100644 --- a/sys/netinet/ip_divert.c +++ b/sys/netinet/ip_divert.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ip_divert.c,v 1.9 1997/05/24 17:23:11 peter Exp $ + * $Id: ip_divert.c,v 1.10 1997/05/26 03:33:48 peter Exp $ */ #include <sys/param.h> @@ -311,8 +311,8 @@ div_bind(struct socket *so, struct mbuf *nam, struct proc *p) int s; int error; - imp = sotoinpcb(so); s = splnet(); + inp = sotoinpcb(so); error = in_pcbbind(inp, nam, p); splx(s); return 0; |