From ef976c93d09b73abd72617eec4201babf86f3a71 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Thu, 10 Mar 2011 22:29:56 +0100 Subject: [PATCH] * iface/dve2/dve2.cc (convert_aps): Fix two typos while parsing >= and >, mistakenly registered as <= and <. --- ChangeLog | 5 +++++ iface/dve2/dve2.cc | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index d7297ff19..c80a95bca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-03-10 Alexandre Duret-Lutz + + * iface/dve2/dve2.cc (convert_aps): Fix two typos while + parsing >= and >, mistakenly registered as <= and <. + 2011-03-07 Alexandre Duret-Lutz Remove the Nips interface. diff --git a/iface/dve2/dve2.cc b/iface/dve2/dve2.cc index c41f8b23a..d16918dc4 100644 --- a/iface/dve2/dve2.cc +++ b/iface/dve2/dve2.cc @@ -398,12 +398,12 @@ namespace spot case '>': if (s[1] == '=') { - op = OP_LE; + op = OP_GE; s += 2; } else { - op = OP_LT; + op = OP_GT; ++s; } break;