1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-23 11:18:54 +00:00

Remove unused structure member from struct in_ifadown_arg.

This commit is contained in:
Gleb Smirnoff 2008-02-07 11:26:52 +00:00
parent 150c26cb34
commit 3a2f50140c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=176086

View File

@ -351,7 +351,6 @@ in_inithead(void **head, int off)
* plug back in.
*/
struct in_ifadown_arg {
struct radix_node_head *rnh;
struct ifaddr *ifa;
int del;
};
@ -389,7 +388,7 @@ in_ifadown(struct ifaddr *ifa, int delete)
if (ifa->ifa_addr->sa_family != AF_INET)
return 1;
arg.rnh = rnh = rt_tables[AF_INET];
rnh = rt_tables[AF_INET];
arg.ifa = ifa;
arg.del = delete;
RADIX_NODE_HEAD_LOCK(rnh);