From: Zdeněk Salvet Date: Thu, 27 Apr 2006 17:36:15 +0000 (+0000) Subject: Actually use the sequence code retrieved from LBproxy. X-Git-Tag: glite-lb-client_R_2_2_1~1 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=74e5d5e0e16441f57d466c871976a7bcfc56100f;p=jra1mw.git Actually use the sequence code retrieved from LBproxy. --- diff --git a/org.glite.lb.client/src/producer.c b/org.glite.lb.client/src/producer.c index 55520d6..35aaa97 100644 --- a/org.glite.lb.client/src/producer.c +++ b/org.glite.lb.client/src/producer.c @@ -699,10 +699,9 @@ int edg_wll_SetLoggingJobProxy( edg_wll_SetParamString(context, EDG_WLL_PARAM_LBPROXY_USER, user); /* query LBProxyServer for sequence code if not user-suplied */ -/* FIXME: doesn't work yet */ if (!code) { - edg_wll_QuerySequenceCodeProxy(context, job, &code_loc); - goto edg_wll_setloggingjobproxy_end; + if (edg_wll_QuerySequenceCodeProxy(context, job, &code_loc)) + goto edg_wll_setloggingjobproxy_end; } else { code_loc = strdup(code); }