diff options
author | wollman <wollman@FreeBSD.org> | 1997-02-20 18:39:33 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1997-02-20 18:39:33 +0000 |
commit | 1affb81d5a744106d3ab9cf99738cdbf0d43c0e1 (patch) | |
tree | 7856c166ca5821f724ea6182bdba69cbbf995dd8 /sys | |
parent | 8eb357fcb0c480f4280c48037ba5dc63ae22101e (diff) | |
download | FreeBSD-src-1affb81d5a744106d3ab9cf99738cdbf0d43c0e1.zip FreeBSD-src-1affb81d5a744106d3ab9cf99738cdbf0d43c0e1.tar.gz |
Fix the parameters of a call to in_setsockaddr().
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/ip_divert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/ip_divert.c b/sys/netinet/ip_divert.c index fc25b70..72af88a 100644 --- a/sys/netinet/ip_divert.c +++ b/sys/netinet/ip_divert.c @@ -330,7 +330,7 @@ div_usrreq(so, req, m, nam, control) break; case PRU_SOCKADDR: - in_setsockaddr(inp, nam); + in_setsockaddr(so, nam); break; case PRU_SENSE: |