From: Miloš Mulač Date: Thu, 7 Feb 2008 16:15:08 +0000 (+0000) Subject: edg_wll_JobStatus renamed to edg_wll_JobStatusServer X-Git-Tag: merge_transactions_src~35 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=43edae9c378726d0508080108d5aad7ef2dfb890;p=jra1mw.git edg_wll_JobStatus renamed to edg_wll_JobStatusServer --- diff --git a/org.glite.lb.server/src/lb_proto.c b/org.glite.lb.server/src/lb_proto.c index 8a3c1ec..07711aa 100644 --- a/org.glite.lb.server/src/lb_proto.c +++ b/org.glite.lb.server/src/lb_proto.c @@ -435,7 +435,7 @@ edg_wll_ErrorCode edg_wll_Proto(edg_wll_Context ctx, flags = (requestPTR[1]=='?') ? edg_wll_string_to_stat_flags(requestPTR + 2) : 0; // FIXME: edg_wll_UserJobs should take flags as parameter - switch (edg_wll_UserJobs(ctx,&jobsOut,NULL)) { + switch (edg_wll_UserJobsServer(ctx,&jobsOut,NULL)) { case 0: if (html) edg_wll_UserJobsToHTML(ctx, jobsOut, &message); else ret = HTTP_OK; break; diff --git a/org.glite.lb.server/src/userjobs.c b/org.glite.lb.server/src/userjobs.c index 2566c73..01f0cf0 100644 --- a/org.glite.lb.server/src/userjobs.c +++ b/org.glite.lb.server/src/userjobs.c @@ -13,7 +13,7 @@ #include "jobstat.h" #include "db_supp.h" -int edg_wll_UserJobs( +int edg_wll_UserJobsServer( edg_wll_Context ctx, edg_wlc_JobId **jobs, edg_wll_JobStat **states) diff --git a/org.glite.lb.server/src/ws_query.c b/org.glite.lb.server/src/ws_query.c index 9d9b092..2ca013c 100644 --- a/org.glite.lb.server/src/ws_query.c +++ b/org.glite.lb.server/src/ws_query.c @@ -166,7 +166,7 @@ SOAP_FMAC5 int SOAP_FMAC6 __lb__UserJobs( ctx = (edg_wll_Context) glite_gsplugin_get_udata(soap); memset(out, 0, sizeof *out); - if (edg_wll_UserJobs(ctx, &jobs, &states) != 0) goto fault; + if (edg_wll_UserJobsServer(ctx, &jobs, &states) != 0) goto fault; if (edg_wll_UserJobsResToSoap(soap, jobs, states, out) != SOAP_OK) { edg_wll_SetError(ctx, ENOMEM, "Couldn't create internal structures"); goto freefault;