diff options
author | 2018-02-12 00:09:39 +0000 | |
---|---|---|
committer | 2018-02-12 00:09:39 +0000 | |
commit | 77f3bafc7dfaf223c6ff9ab99db28cc407517126 (patch) | |
tree | d9b9db2156cb6c788b13b2fb1b0d922a3614cd3a | |
parent | dont handle SIOCSIFRDOMAIN twice, egre isn't supposed to filter it. (diff) | |
download | wireguard-openbsd-77f3bafc7dfaf223c6ff9ab99db28cc407517126.tar.xz wireguard-openbsd-77f3bafc7dfaf223c6ff9ab99db28cc407517126.zip |
; ends c statements, not ;;
-rw-r--r-- | sys/net/if_etherip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_etherip.c b/sys/net/if_etherip.c index 133443ab20c..7a0b4bbd3bb 100644 --- a/sys/net/if_etherip.c +++ b/sys/net/if_etherip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_etherip.c,v 1.33 2018/02/09 09:22:46 dlg Exp $ */ +/* $OpenBSD: if_etherip.c,v 1.34 2018/02/12 00:09:39 dlg Exp $ */ /* * Copyright (c) 2015 Kazuya GODA <goda@openbsd.org> * @@ -73,7 +73,7 @@ struct etherip_tunnel { sa_family_t t_af; RBT_ENTRY(etherip_tunnel) - t_entry;; + t_entry; }; RBT_HEAD(etherip_tree, etherip_tunnel); |