diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-10-28 16:08:11 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-10-28 16:08:11 +0000 |
commit | ddb661211a0fcb7462c46ed9840afb1461785e2e (patch) | |
tree | 08001b0f02688974c2b832407436aec35009c664 /usr.bin | |
parent | cf7de6f4abce6ce2cda85d6d5ec2ae3f851f1d8f (diff) |
cleanup ;;
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/systat/pftop.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/systat/pftop.c b/usr.bin/systat/pftop.c index 8d67757f8c3..e1434d97262 100644 --- a/usr.bin/systat/pftop.c +++ b/usr.bin/systat/pftop.c @@ -1,4 +1,4 @@ -/* $Id: pftop.c,v 1.15 2010/07/22 12:33:29 giovanni Exp $ */ +/* $Id: pftop.c,v 1.16 2010/10/28 16:08:10 deraadt Exp $ */ /* * Copyright (c) 2001, 2007 Can Erkin Acar * Copyright (c) 2001 Daniel Hartmeier @@ -480,10 +480,10 @@ sort_addr_callback(const struct pfsync_state *s1, } if (s2->direction == PF_IN) { - ab = &s2->key[PF_SK_STACK].addr[ii];; + ab = &s2->key[PF_SK_STACK].addr[ii]; pb = s2->key[PF_SK_STACK].port[ii]; } else { - ab = &s2->key[PF_SK_WIRE].addr[io];; + ab = &s2->key[PF_SK_WIRE].addr[io]; pb = s2->key[PF_SK_WIRE].port[io]; } @@ -528,10 +528,10 @@ sort_port_callback(const struct pfsync_state *s1, } if (s2->direction == PF_IN) { - ab = &s2->key[PF_SK_STACK].addr[ii];; + ab = &s2->key[PF_SK_STACK].addr[ii]; pb = s2->key[PF_SK_STACK].port[ii]; } else { - ab = &s2->key[PF_SK_WIRE].addr[io];; + ab = &s2->key[PF_SK_WIRE].addr[io]; pb = s2->key[PF_SK_WIRE].port[io]; } |