diff options
author | Toomas Soome <tsoome@me.com> | 2017-07-15 12:34:09 +0300 |
---|---|---|
committer | Hans Rosenfeld <hans.rosenfeld@joyent.com> | 2018-04-23 18:15:38 +0200 |
commit | 173f9ecb676ad20b467555f6b20bbfae39f90372 (patch) | |
tree | 0de69f7fe0d424bce379c1db2ed1c61c46741457 /usr/src | |
parent | 2811ec437a3102acd185cc6fafc9a716169cac2a (diff) | |
download | illumos-joyent-173f9ecb676ad20b467555f6b20bbfae39f90372.tar.gz |
9262 iptun: this statement may fall through
Reviewed by: Sebastian Wiedenroth <sebastian.wiedenroth@skylime.net>
Reviewed by: C Fraire <cfraire@me.com>
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/uts/common/inet/iptun/iptun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/inet/iptun/iptun.c b/usr/src/uts/common/inet/iptun/iptun.c index fb4402dc17..ca46539f89 100644 --- a/usr/src/uts/common/inet/iptun/iptun.c +++ b/usr/src/uts/common/inet/iptun/iptun.c @@ -2629,8 +2629,8 @@ iptun_input_icmp_v6(iptun_t *iptun, mblk_t *data_mp, icmp6_t *icmp6h, iptun_drop_pkt(data_mp, &iptun->iptun_oerrors); return; } - /* FALLTHRU */ } + /* FALLTHROUGH */ case ICMP6_TIME_EXCEEDED: case ICMP6_DST_UNREACH: type = (inner4 != NULL ? ICMP_DEST_UNREACHABLE : |