projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
880cd6f
)
- Fix tree head/tail upon insertion
author
Guus Sliepen
<guus@tinc-vpn.org>
Sat, 18 Nov 2000 23:22:44 +0000
(23:22 +0000)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Sat, 18 Nov 2000 23:22:44 +0000
(23:22 +0000)
lib/rbl.c
patch
|
blob
|
history
diff --git
a/lib/rbl.c
b/lib/rbl.c
index
32e87bb
..
0edc0ff
100644
(file)
--- a/
lib/rbl.c
+++ b/
lib/rbl.c
@@
-17,7
+17,7
@@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: rbl.c,v 1.1.2.
3 2000/11/18 23:21:00
guus Exp $
+ $Id: rbl.c,v 1.1.2.
4 2000/11/18 23:22:44
guus Exp $
*/
@@
-190,6
+190,14
@@
rbl_t rbl_insert_rbl(rbltree_t *tree, rbl_t *rbl)
else
tree->top = rbl;
+ /* Linked list fixup */
+
+ if(!rbl->prev)
+ tree->head = rbl;
+
+ if(!rbl->next)
+ tree->tail = rbl;
+
/* Red-black part of insert */
rbl->color = RBL_RED;