From: Schanzenbach, Martin Date: Fri, 17 Aug 2018 22:24:14 +0000 (+0200) Subject: fix X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=refs%2Fheads%2Fzklaim;p=oweals%2Fgnunet.git fix --- diff --git a/src/zklaim/gnunet-zklaim.c b/src/zklaim/gnunet-zklaim.c index b60c62212..57373ea85 100644 --- a/src/zklaim/gnunet-zklaim.c +++ b/src/zklaim/gnunet-zklaim.c @@ -241,7 +241,7 @@ op_str_to_enum (const char* op_str) return zklaim_eq; else if (0 == strcmp ("<=", op_str)) return zklaim_greater_or_eq; - else if (0 == strcmp ("<", op_str)) + else if (0 == strcmp (">", op_str)) return zklaim_greater; else if (0 == strcmp ("!=", op_str)) return zklaim_not_eq;