diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-01-22 07:52:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-01-22 07:52:39 +0000 |
commit | 769ba23bf760619d841e053cfc0eafffebe091c9 (patch) | |
tree | 5a2c9b6f742b0b0b462808643e2a45b9afbb4467 /lib | |
parent | c22fd84c86ea453e3fa2535530f6d328c384f08b (diff) |
delete wasteful ;;
ok tedu
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/net/ip6opt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/net/ip6opt.c b/lib/libc/net/ip6opt.c index d6406c3aedd..38374894484 100644 --- a/lib/libc/net/ip6opt.c +++ b/lib/libc/net/ip6opt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6opt.c,v 1.9 2017/04/27 23:52:35 millert Exp $ */ +/* $OpenBSD: ip6opt.c,v 1.10 2020/01/22 07:52:37 deraadt Exp $ */ /* $KAME: ip6opt.c,v 1.18 2005/06/15 07:11:35 keiichi Exp $ */ /* @@ -155,7 +155,7 @@ inet6_opt_append(void *extbuf, socklen_t extlen, int offset, u_int8_t type, int inet6_opt_finish(void *extbuf, socklen_t extlen, int offset) { - int updatelen = offset > 0 ? (1 + ((offset - 1) | 7)) : 0;; + int updatelen = offset > 0 ? (1 + ((offset - 1) | 7)) : 0; if (extbuf) { u_int8_t *padp; |