removed unused parameter
authorMiloš Mulač <mulac@civ.zcu.cz>
Sun, 13 Jul 2008 13:25:14 +0000 (13:25 +0000)
committerMiloš Mulač <mulac@civ.zcu.cz>
Sun, 13 Jul 2008 13:25:14 +0000 (13:25 +0000)
org.glite.lb.server/src/jobstat.c
org.glite.lb.server/src/jobstat.h
org.glite.lb.server/src/store.c.T

index ec92ea2..cd05548 100644 (file)
@@ -768,8 +768,7 @@ cleanup:
 
 edg_wll_ErrorCode edg_wll_StoreIntStateEmbryonic(edg_wll_Context ctx,
         char *icnames, 
-       char *values,
-       glite_lbu_bufInsert *bi)
+       char *values)
 {
        char *stmt = NULL;
 
index 240fd98..ed0ed2d 100644 (file)
@@ -12,7 +12,7 @@ int edg_wll_JobStatusServer(edg_wll_Context, glite_jobid_const_t, int, edg_wll_J
 
 int edg_wll_intJobStatus( edg_wll_Context, glite_jobid_const_t, int, intJobStat *, int, int);
 edg_wll_ErrorCode edg_wll_StoreIntState(edg_wll_Context, intJobStat *, int);
-edg_wll_ErrorCode edg_wll_StoreIntStateEmbryonic(edg_wll_Context, char *icnames, char *values, glite_lbu_bufInsert *bi);
+edg_wll_ErrorCode edg_wll_StoreIntStateEmbryonic(edg_wll_Context, char *icnames, char *values);
 edg_wll_ErrorCode edg_wll_LoadIntState(edg_wll_Context , glite_jobid_const_t , int, int, intJobStat **);
 edg_wll_ErrorCode edg_wll_RestoreSubjobState(edg_wll_Context , glite_jobid_const_t , intJobStat *);
 
index 359deb9..fd904c0 100644 (file)
@@ -660,7 +660,6 @@ int register_subjobs_embryonic(edg_wll_Context ctx,const edg_wll_RegJobEvent *e)
        edg_wlc_JobId           *subjobs = NULL;
        char                    *jobid = NULL, *jobid_md5 = NULL, *jobid_md5_old = NULL;
        size_t                  jobid_len;
-       glite_lbu_bufInsert     bi_s, *bi_states = &bi_s;
        char                    *icnames = NULL, *values = NULL, *userid = NULL, *stmt = NULL;
        int                     server, proxy, membership = 0;
        glite_lbu_Statement     sh = NULL;
@@ -716,7 +715,7 @@ int register_subjobs_embryonic(edg_wll_Context ctx,const edg_wll_RegJobEvent *e)
                free(jobid_md5_old);
                jobid_md5_old = jobid_md5;
 
-               if (!err && (err = edg_wll_StoreIntStateEmbryonic(ctx, icnames, values, bi_states)))
+               if (!err && (err = edg_wll_StoreIntStateEmbryonic(ctx, icnames, values)))
                        edg_wll_Error(ctx,&et,&ed);
 
                if (err) {