diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2016-07-18 15:21:34 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2016-07-18 15:21:34 +0000 |
commit | 1d4709c106faf5bfce4301659a1f978a959758dc (patch) | |
tree | ffde945a54ed7aa583c546244596ab3ce03c4d1f | |
parent | 5112e0d542db97a09661da1653ab5dffc9bf0864 (diff) |
g/c unused (global!) var: oqueues isn't used any more. ALTQ leftover; not
noticed since struct node_queue stayed. ok claudio benno gcc
-rw-r--r-- | sbin/pfctl/parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y index 5386913c10e..9c0827c4747 100644 --- a/sbin/pfctl/parse.y +++ b/sbin/pfctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.653 2016/06/22 10:13:14 kettenis Exp $ */ +/* $OpenBSD: parse.y,v 1.654 2016/07/18 15:21:33 henning Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -181,7 +181,7 @@ struct node_queue { int scheduler; struct node_queue *next; struct node_queue *tail; -} *oqueues = NULL; +}; struct node_qassign { char *qname; |