changeset 531:5d1a832d6e61

Fix removing from lists.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 06 Jun 2012 17:24:08 +0300
parents f0bca971170b
children cfab338d3c9e
files main.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/main.c	Wed Jun 06 16:20:53 2012 +0300
+++ b/main.c	Wed Jun 06 17:24:08 2012 +0300
@@ -718,7 +718,7 @@
         if (user != NULL)
         {
             printMsgQ(currWin, "Removed user '%s' from %s list.\n", name, listname);
-            th_llist_delete_node(&setIgnoreList, user);
+            th_llist_delete_node(list, user);
         }
         else
         {