From c821d02ff8bdbc4c3dfd3fe242446b4e5dc530bd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zden=C4=9Bk=20=C5=A0ustr?= Date: Mon, 23 Jul 2012 16:07:18 +0000 Subject: [PATCH] Equality and inequality are not the same thing (JDL attribute (un)matching fixed) --- org.glite.lb.server/src/query.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 1.8.2.3