diff options
author | Mike Frantzen <frantzen@cvs.openbsd.org> | 2003-08-27 17:42:01 +0000 |
---|---|---|
committer | Mike Frantzen <frantzen@cvs.openbsd.org> | 2003-08-27 17:42:01 +0000 |
commit | 497d2850402d6491a6958ac750373dcbf5c6c403 (patch) | |
tree | 7ef854b601496e31be774d5f45dc133617816c2f /sbin | |
parent | 0343a32f0193e94db5bc1c26c93874ad74e8918d (diff) |
kill dangling 'else'. fixes modulus in W and M TCP options
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/pfctl/pfctl_osfp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/pfctl_osfp.c b/sbin/pfctl/pfctl_osfp.c index 0467bdceb4f..958531450a1 100644 --- a/sbin/pfctl/pfctl_osfp.c +++ b/sbin/pfctl/pfctl_osfp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_osfp.c,v 1.3 2003/08/22 21:50:34 david Exp $ */ +/* $OpenBSD: pfctl_osfp.c,v 1.4 2003/08/27 17:42:00 frantzen Exp $ */ /* * Copyright (c) 2003 Mike Frantzen <frantzen@openbsd.org> @@ -926,7 +926,7 @@ get_tcpopts(const char *filename, int lineno, const char *tcpopts, if (tcpopts[i] == '%') { *this_mod = T_MOD; i++; - } else + } do { if (!isdigit(tcpopts[i])) { fprintf(stderr, "%s:%d unknown " |