From 6cdafbbb7dfa08610344ba65b8b6089c342956f0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Fri, 13 Jul 2012 15:05:54 +0000 Subject: [PATCH] Fix previous commit (SB #42670). --- org.glite.lb.client/examples/query_ext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.8.2.3