diff options
author | 2007-02-14 00:53:47 +0000 | |
---|---|---|
committer | 2007-02-14 00:53:47 +0000 | |
commit | 83344e41421b7b24c3a018529e91e580978b87cc (patch) | |
tree | 07d05bf79ea9f82571ca07f6e04bd57f9c612f79 /sys/net/if.c | |
parent | bus_space does byte swapping to cope with host endianness for us, so remove (diff) | |
download | wireguard-openbsd-83344e41421b7b24c3a018529e91e580978b87cc.tar.xz wireguard-openbsd-83344e41421b7b24c3a018529e91e580978b87cc.zip |
Consistently spell FALLTHROUGH to appease lint.
ok kettenis@ cloder@ tom@ henning@
Diffstat (limited to 'sys/net/if.c')
-rw-r--r-- | sys/net/if.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if.c b/sys/net/if.c index fa1ca942f17..165f044713a 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if.c,v 1.154 2007/02/12 22:36:47 mpf Exp $ */ +/* $OpenBSD: if.c,v 1.155 2007/02/14 00:53:48 jsg Exp $ */ /* $NetBSD: if.c,v 1.35 1996/05/07 05:26:04 thorpej Exp $ */ /* @@ -1336,7 +1336,7 @@ ifioctl(struct socket *so, u_long cmd, caddr_t data, struct proc *p) bcopy((caddr_t)ifr->ifr_addr.sa_data, (caddr_t)((struct arpcom *)ifp)->ac_enaddr, ETHER_ADDR_LEN); - /* fall through */ + /* FALLTHROUGH */ case IFT_ARCNET: bcopy((caddr_t)ifr->ifr_addr.sa_data, LLADDR(sdl), ETHER_ADDR_LEN); |