git://scientific.zcu.cz
/
jra1mw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
835cef8
)
Fix position of code and user parameters in edg_wll_SetLoggingJobMaster()
author
Zdeněk Salvet
<salvet@ics.muni.cz>
Tue, 16 Mar 2010 14:19:32 +0000
(14:19 +0000)
committer
Zdeně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
patch
|
blob
|
blame
|
history
diff --git
a/org.glite.lb.client/src/producer.c
b/org.glite.lb.client/src/producer.c
index
9d518b4
..
a2da0e2
100644
(file)
--- 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);
}
/**