diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-05-08 11:22:44 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-05-08 11:22:44 +0000 |
commit | 2d19220f67334235585a07f04f98bcd7a9f84401 (patch) | |
tree | bdce392692a539ceca5f5a87bdc3253541bc8018 /usr.sbin/bgpd/control.c | |
parent | 4b2e01c5c104ffb058dd5624c8ab48acaa1aab71 (diff) |
remove unused argument to control_dispatch_msg(), lint
Diffstat (limited to 'usr.sbin/bgpd/control.c')
-rw-r--r-- | usr.sbin/bgpd/control.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/control.c b/usr.sbin/bgpd/control.c index 373b1e1902d..b64236286bd 100644 --- a/usr.sbin/bgpd/control.c +++ b/usr.sbin/bgpd/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.29 2004/04/29 19:56:04 deraadt Exp $ */ +/* $OpenBSD: control.c,v 1.30 2004/05/08 11:22:43 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -174,7 +174,7 @@ control_close(int fd) } int -control_dispatch_msg(struct pollfd *pfd, int i) +control_dispatch_msg(struct pollfd *pfd) { struct imsg imsg; struct ctl_conn *c; |