edg_wll_JobStatus renamed to edg_wll_JobStatusServer
authorMiloš Mulač <mulac@civ.zcu.cz>
Thu, 7 Feb 2008 16:15:08 +0000 (16:15 +0000)
committerMiloš Mulač <mulac@civ.zcu.cz>
Thu, 7 Feb 2008 16:15:08 +0000 (16:15 +0000)
org.glite.lb.server/src/lb_proto.c
org.glite.lb.server/src/userjobs.c
org.glite.lb.server/src/ws_query.c

index 8a3c1ec..07711aa 100644 (file)
@@ -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;
index 2566c73..01f0cf0 100644 (file)
@@ -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)
index 9d9b092..2ca013c 100644 (file)
@@ -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;