diff options
author | 2013-10-21 09:58:14 +0000 | |
---|---|---|
committer | 2013-10-21 09:58:14 +0000 | |
commit | 6e451d03a6947c439435a23bcae4bc5b95fbb0d1 (patch) | |
tree | 248b5b3d45b86f5f9243ac5f3c173a6e3dd93c61 | |
parent | pf_translate: missing conditonal pf_check_proto_cksum calls before (diff) | |
download | wireguard-openbsd-6e451d03a6947c439435a23bcae4bc5b95fbb0d1.tar.xz wireguard-openbsd-6e451d03a6947c439435a23bcae4bc5b95fbb0d1.zip |
we are passing the variable, not using a global any more.
pointed out by bluhm@
-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}; |