diff options
author | Peter Hessler <phessler@cvs.openbsd.org> | 2013-10-21 09:58:15 +0000 |
---|---|---|
committer | Peter Hessler <phessler@cvs.openbsd.org> | 2013-10-21 09:58:15 +0000 |
commit | 561afedc7f439369ebffa07ae15950cf0e57f520 (patch) | |
tree | 1fa71e530dc64c6ca5442360da3a442c54cce9fb /usr.sbin/rtsold/rtsol.c | |
parent | cea684458d666a44a9eb0fc18cd83b65676929dc (diff) |
we are passing the variable, not using a global any more.
pointed out by bluhm@
Diffstat (limited to 'usr.sbin/rtsold/rtsol.c')
-rw-r--r-- | usr.sbin/rtsold/rtsol.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/rtsold/rtsol.c b/usr.sbin/rtsold/rtsol.c index 02afd9d6ac7..3ee16594c4f 100644 --- a/usr.sbin/rtsold/rtsol.c +++ b/usr.sbin/rtsold/rtsol.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtsol.c,v 1.18 2013/10/21 08:46:07 phessler Exp $ */ +/* $OpenBSD: rtsol.c,v 1.19 2013/10/21 09:58:14 phessler Exp $ */ /* $KAME: rtsol.c,v 1.15 2002/05/31 10:10:03 itojun Exp $ */ /* @@ -71,7 +71,6 @@ static struct iovec sndiov[2]; static struct sockaddr_in6 from; int rssock; -extern u_int rdomain; static struct sockaddr_in6 sin6_allrouters = {sizeof(sin6_allrouters), AF_INET6}; |