From: František Dvořák Date: Fri, 13 Jul 2012 15:05:54 +0000 (+0000) Subject: Fix previous commit (SB #42670). X-Git-Tag: glite-jobid-api-c_R_2_1_2_3~7 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=6cdafbbb7dfa08610344ba65b8b6089c342956f0;p=jra1mw.git Fix previous commit (SB #42670). --- diff --git a/org.glite.lb.client/examples/query_ext.c b/org.glite.lb.client/examples/query_ext.c index 8f8d4c9..0ee7679 100644 --- a/org.glite.lb.client/examples/query_ext.c +++ b/org.glite.lb.client/examples/query_ext.c @@ -368,7 +368,7 @@ static char *get_op(char *src, edg_wll_QueryOp *op) else if ( src[i] == '>' ) *op = EDG_WLL_QUERY_OP_GREATER; else if ( src[i] == '<' ) { - if ( (src[i+1] != '\0') && (src[i] == '>') ) { + if ( (src[i+1] != '\0') && (src[i+1] == '>') ) { *op = EDG_WLL_QUERY_OP_UNEQUAL; i++; } else