From 18c8241a91bd9208879666f1a1a13f454e66d75b Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sun, 3 May 1998 16:43:39 +0000 Subject: BIRD library: The story continues. Complete resource manages and IP address handling. --- lib/lists.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/lists.c') diff --git a/lib/lists.c b/lib/lists.c index 55c2b0f..c14eb4c 100644 --- a/lib/lists.c +++ b/lib/lists.c @@ -16,7 +16,7 @@ add_tail(list *l, node *n) { node *z = l->tail; - n->next = (node *) &l->tail; + n->next = (node *) &l->null; n->prev = z; z->next = n; l->tail = n; -- cgit v1.2.3