diff options
author | 2006-03-08 16:03:40 +0000 | |
---|---|---|
committer | 2006-03-08 16:03:40 +0000 | |
commit | edac842b76a10ca40cabf96913c94a7164c7acd2 (patch) | |
tree | 7d423e5b0f750a0f37350ca06f0da6acf86bd62f | |
parent | Cleanup with lint. Kill unused variable and fix some types. (diff) | |
download | wireguard-openbsd-edac842b76a10ca40cabf96913c94a7164c7acd2.tar.xz wireguard-openbsd-edac842b76a10ca40cabf96913c94a7164c7acd2.zip |
Remove unused quit flag inherited from bgpd long ago.
-rw-r--r-- | usr.sbin/ospfd/ospfe.c | 3 | ||||
-rw-r--r-- | usr.sbin/ospfd/rde.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/usr.sbin/ospfd/ospfe.c b/usr.sbin/ospfd/ospfe.c index 9eba379bd4a..eee0a817cc5 100644 --- a/usr.sbin/ospfd/ospfe.c +++ b/usr.sbin/ospfd/ospfe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfe.c,v 1.41 2006/03/08 13:23:08 claudio Exp $ */ +/* $OpenBSD: ospfe.c,v 1.42 2006/03/08 16:03:40 claudio Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -48,7 +48,6 @@ void ospfe_shutdown(void); void orig_rtr_lsa_all(struct area *); struct iface *find_vlink(struct abr_rtr *); -volatile sig_atomic_t ospfe_quit = 0; struct ospfd_conf *oeconf = NULL; struct imsgbuf *ibuf_main; struct imsgbuf *ibuf_rde; diff --git a/usr.sbin/ospfd/rde.c b/usr.sbin/ospfd/rde.c index 4970f1207dc..732d4bbcc14 100644 --- a/usr.sbin/ospfd/rde.c +++ b/usr.sbin/ospfd/rde.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rde.c,v 1.41 2006/03/08 13:49:07 claudio Exp $ */ +/* $OpenBSD: rde.c,v 1.42 2006/03/08 16:03:40 claudio Exp $ */ /* * Copyright (c) 2004, 2005 Claudio Jeker <claudio@openbsd.org> @@ -62,7 +62,6 @@ struct lsa *rde_asext_put(struct kroute *); struct lsa *orig_asext_lsa(struct kroute *, u_int16_t); struct lsa *orig_sum_lsa(struct rt_node *, u_int8_t); -volatile sig_atomic_t rde_quit = 0; struct ospfd_conf *rdeconf = NULL; struct imsgbuf *ibuf_ospfe; struct imsgbuf *ibuf_main; |