From: Zdeněk Salvet Date: Tue, 16 Mar 2010 14:19:32 +0000 (+0000) Subject: Fix position of code and user parameters in edg_wll_SetLoggingJobMaster() X-Git-Tag: glite-jobid-api-c_R_1_0_2_1~97 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=73d3d792a980ef3c7d50b9e8f7c63c2f96c1a20d;p=jra1mw.git Fix position of code and user parameters in edg_wll_SetLoggingJobMaster() calls. --- diff --git a/org.glite.lb.client/src/producer.c b/org.glite.lb.client/src/producer.c index 9d518b4..a2da0e2 100644 --- a/org.glite.lb.client/src/producer.c +++ b/org.glite.lb.client/src/producer.c @@ -757,7 +757,7 @@ int edg_wll_SetLoggingJob( const char *code, int seq_code_flags) { - return edg_wll_SetLoggingJobMaster(ctx,job,NULL,code,seq_code_flags,/* XXX */ 0); + return edg_wll_SetLoggingJobMaster(ctx,job,code,NULL,seq_code_flags,/* XXX */ 0); } int edg_wll_SetLoggingJobProxy( @@ -767,7 +767,7 @@ int edg_wll_SetLoggingJobProxy( const char *user, int seq_code_flags) { - return edg_wll_SetLoggingJobMaster(ctx,job,user,code,seq_code_flags,EDG_WLL_LOGFLAG_PROXY); + return edg_wll_SetLoggingJobMaster(ctx,job,code,user,seq_code_flags,EDG_WLL_LOGFLAG_PROXY); } /**