From 73d3d792a980ef3c7d50b9e8f7c63c2f96c1a20d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zden=C4=9Bk=20Salvet?= Date: Tue, 16 Mar 2010 14:19:32 +0000 Subject: [PATCH] Fix position of code and user parameters in edg_wll_SetLoggingJobMaster() calls. --- org.glite.lb.client/src/producer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } /** -- 1.8.2.3