diff options
author | 2015-12-01 12:09:36 +0000 | |
---|---|---|
committer | 2015-12-01 12:09:36 +0000 | |
commit | 9079ecc15b5ec1b794d7976359d8d16c2cf7d635 (patch) | |
tree | b2937d708486495ef26152e017602391646d0e11 | |
parent | s_server also needs DNS; reported by tb@ (diff) | |
download | wireguard-openbsd-9079ecc15b5ec1b794d7976359d8d16c2cf7d635.tar.xz wireguard-openbsd-9079ecc15b5ec1b794d7976359d8d16c2cf7d635.zip |
This RTM_GET case can't trigger due to the filtering done above.
ok florian@
-rw-r--r-- | usr.sbin/rtadvd/if.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/rtadvd/if.c b/usr.sbin/rtadvd/if.c index 9c8ef9b8ab4..f11389741ce 100644 --- a/usr.sbin/rtadvd/if.c +++ b/usr.sbin/rtadvd/if.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if.c,v 1.32 2015/11/30 20:58:08 jca Exp $ */ +/* $OpenBSD: if.c,v 1.33 2015/12/01 12:09:36 jca Exp $ */ /* $KAME: if.c,v 1.17 2001/01/21 15:27:30 itojun Exp $ */ /* @@ -237,7 +237,6 @@ get_next_msg(char *buf, char *lim, size_t *lenp, int filter) continue; switch (rtm->rtm_type) { - case RTM_GET: case RTM_ADD: case RTM_DELETE: if (rtm->rtm_tableid != 0) |