diff options
author | Esben Norby <norby@cvs.openbsd.org> | 2005-03-22 22:13:49 +0000 |
---|---|---|
committer | Esben Norby <norby@cvs.openbsd.org> | 2005-03-22 22:13:49 +0000 |
commit | 8a40b42338d4d8f23036428ca1de8583573f6461 (patch) | |
tree | c50a11e3e6587573d400bc774ac283925a2a0ca2 /usr.sbin/ospfd/lsack.c | |
parent | a5c8c7427195568ba9d33a925c8c45c14163b6a5 (diff) |
Remove bool cruft.
ok claudio@
Diffstat (limited to 'usr.sbin/ospfd/lsack.c')
-rw-r--r-- | usr.sbin/ospfd/lsack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/lsack.c b/usr.sbin/ospfd/lsack.c index 381aefd86b0..bfd0c9a1f7e 100644 --- a/usr.sbin/ospfd/lsack.c +++ b/usr.sbin/ospfd/lsack.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lsack.c,v 1.6 2005/03/17 21:17:12 claudio Exp $ */ +/* $OpenBSD: lsack.c,v 1.7 2005/03/22 22:13:48 norby Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -210,7 +210,7 @@ ls_ack_list_clr(struct iface *iface) iface->ls_ack_cnt = 0; } -bool +int ls_ack_list_empty(struct iface *iface) { return (TAILQ_EMPTY(&iface->ls_ack_list)); |