From: Zdeněk Šustr Date: Mon, 23 Jul 2012 16:07:18 +0000 (+0000) Subject: Equality and inequality are not the same thing (JDL attribute (un)matching fixed) X-Git-Tag: glite-jobid-api-c_R_2_1_2_3~5 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=c821d02ff8bdbc4c3dfd3fe242446b4e5dc530bd;p=jra1mw.git Equality and inequality are not the same thing (JDL attribute (un)matching fixed) --- diff --git a/org.glite.lb.server/src/query.c b/org.glite.lb.server/src/query.c index ff7fecb..859d3a6 100644 --- a/org.glite.lb.server/src/query.c +++ b/org.glite.lb.server/src/query.c @@ -1747,8 +1747,8 @@ int match_status(edg_wll_Context ctx, const edg_wll_JobStat *oldstat, const edg_ if ( !strcmp(conds[i][j].value.c, extr_val) ) { if ( conds[i][j].op == EDG_WLL_QUERY_OP_EQUAL ) goto or_satisfied; - else if ( conds[i][j].op == EDG_WLL_QUERY_OP_UNEQUAL ) goto or_satisfied; } + else if ( conds[i][j].op == EDG_WLL_QUERY_OP_UNEQUAL ) goto or_satisfied; } } break;