Fix position of code and user parameters in edg_wll_SetLoggingJobMaster()
authorZdeněk Salvet <salvet@ics.muni.cz>
Tue, 16 Mar 2010 14:19:32 +0000 (14:19 +0000)
committerZdeněk Salvet <salvet@ics.muni.cz>
Tue, 16 Mar 2010 14:19:32 +0000 (14:19 +0000)
calls.

org.glite.lb.client/src/producer.c

index 9d518b4..a2da0e2 100644 (file)
@@ -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);
 }
 
 /**