From 1c8cb37cf10532a31d62644a809ea7b297570c97 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Milo=C5=A1=20Mula=C4=8D?= Date: Mon, 20 Oct 2008 15:19:07 +0000 Subject: [PATCH] correct call of add_taglist --- org.glite.lb.state-machine/src/process_event_pbs.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/org.glite.lb.state-machine/src/process_event_pbs.c b/org.glite.lb.state-machine/src/process_event_pbs.c index 64992ef..303a675 100644 --- a/org.glite.lb.state-machine/src/process_event_pbs.c +++ b/org.glite.lb.state-machine/src/process_event_pbs.c @@ -198,8 +198,7 @@ int processEvent_PBS(intJobStat *js, edg_wll_Event *e, int ev_seq, int strict, c case EDG_WLL_EVENT_USERTAG: if (USABLE_DATA(res)) { if (e->userTag.name != NULL && e->userTag.value != NULL) { - add_taglist(&js->pub.user_tags, - e->userTag.name, e->userTag.value); + add_taglist(e->userTag.name, e->userTag.value, e->any.seqcode, js); } } break; -- 1.8.2.3