X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=lib%2Favl_tree.c;h=a8bf5d5f733c99863c31cdcd9e19bdf86a0c8fca;hp=6584ddf811374e798243e5e200ae954e4f42c468;hb=c0af4c37d2046ffb3e07dd62f266a4fb99ea5614;hpb=df3220a1549f992cbf4a9b6e67c1e67b69896c7d diff --git a/lib/avl_tree.c b/lib/avl_tree.c index 6584ddf8..a8bf5d5f 100644 --- a/lib/avl_tree.c +++ b/lib/avl_tree.c @@ -1,8 +1,8 @@ /* avl_tree.c -- avl_ tree and linked list convenience Copyright (C) 1998 Michael H. Buselli - 2000-2005 Ivo Timmermans , - 2000-2005 Guus Sliepen + 2000-2005 Ivo Timmermans, + 2000-2006 Guus Sliepen 2000-2005 Wessel Dankers This program is free software; you can redistribute it and/or modify @@ -15,9 +15,9 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Original AVL tree library by Michael H. Buselli . @@ -28,8 +28,6 @@ Cleaned up and incorporated some of the ideas from the red-black tree library for inclusion into tinc (http://www.tinc-vpn.org/) by Guus Sliepen . - - $Id$ */ #include "system.h" @@ -656,7 +654,7 @@ void avl_delete_tree(avl_tree_t *tree) { avl_node_t *node, *next; - for(node = tree->root; node; node = next) { + for(node = tree->head; node; node = next) { next = node->next; avl_free_node(tree, node); }