diff options
author | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2003-01-20 18:37:53 +0000 |
---|---|---|
committer | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2003-01-20 18:37:53 +0000 |
commit | 6ac77690f88965d1ae00c377b912f8d31214f1c7 (patch) | |
tree | 38d95e95c060a63716c3f955892257406742c8e6 /sbin/pfctl/pfctl.c | |
parent | 7308a0b752b23f18e6b96fd1b4f24a5be32301b9 (diff) |
Remove unused argument from print_name() and fix two other nits
found by lint.
ok henning
Diffstat (limited to 'sbin/pfctl/pfctl.c')
-rw-r--r-- | sbin/pfctl/pfctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c index 8239818d9ec..cb53b8de596 100644 --- a/sbin/pfctl/pfctl.c +++ b/sbin/pfctl/pfctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl.c,v 1.137 2003/01/19 15:28:12 camield Exp $ */ +/* $OpenBSD: pfctl.c,v 1.138 2003/01/20 18:37:52 camield Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -1177,8 +1177,8 @@ pfctl_test_altqsupport(int dev, int opts) return (0); } else err(1, "DIOCGETALTQS"); - } else - return (1); + } + return (1); } int |