From: Miloš Mulač Date: Mon, 20 Oct 2008 15:19:07 +0000 (+0000) Subject: correct call of add_taglist X-Git-Tag: test_tag~125 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=1c8cb37cf10532a31d62644a809ea7b297570c97;p=jra1mw.git correct call of add_taglist --- 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;