use the right list
authorMichal Voců <michal@ruk.cuni.cz>
Fri, 24 Oct 2008 15:52:44 +0000 (15:52 +0000)
committerMichal Voců <michal@ruk.cuni.cz>
Fri, 24 Oct 2008 15:52:44 +0000 (15:52 +0000)
org.glite.lb.logger/src/queue_mgr_http.c

index 59eba4a..777e620 100644 (file)
@@ -87,7 +87,7 @@ queue_list_add(struct queue_list **ql, const char *dest, struct event_queue *eq)
     return(-1);
   }
   el->queue = eq;
-  el->next = queues;
+  el->next = *ql;
   *ql = el;
   return 0;
 }