From 071fcedb308f6b868b613453a0f78d12566f57a5 Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 12 Aug 2003 05:40:28 +0000 Subject: 2003-08-12 Paul Jakma * lib/linkhist.h: The LISTNODE_{ADD,DEL} macros (not used anywhere) do not maintain the list count - fix. --- lib/linklist.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib') diff --git a/lib/linklist.h b/lib/linklist.h index a91947c3..ace6dee3 100644 --- a/lib/linklist.h +++ b/lib/linklist.h @@ -83,6 +83,7 @@ void list_add_list (list, list); else \ (L)->tail->next = (N); \ (L)->tail = (N); \ + (L)->count++; \ } while (0) /* List node delete macro. */ @@ -96,6 +97,7 @@ void list_add_list (list, list); (N)->next->prev = (N)->prev; \ else \ (L)->tail = (N)->prev; \ + (L)->count--; \ } while (0) #endif /* _ZEBRA_LINKLIST_H */ -- cgit v1.2.1