From: Adam Dickmeiss Date: Thu, 8 Oct 2009 10:33:06 +0000 (+0200) Subject: parse_filter: spelling and more readable X-Git-Tag: v1.2.2~23 X-Git-Url: http://sru.miketaylor.org.uk/cgi-bin?a=commitdiff_plain;h=8f9db2879b79f863f4392d51de1a5732beb51634;p=pazpar2-moved-to-github.git parse_filter: spelling and more readable --- diff --git a/src/logic.c b/src/logic.c index 26fe5e7..ced95ee 100644 --- a/src/logic.c +++ b/src/logic.c @@ -448,9 +448,9 @@ static struct database_criterion *parse_filter(NMEM m, const char *buf) new->type = PAZPAR2_STRING_MATCH; else if ((eq = strchr(values[i], '~'))) new->type = PAZPAR2_SUBSTRING_MATCH; - if (!eq) + else if (!eq) { - yaz_log(YLOG_WARN, "Missing equal-signi/tilde in filter"); + yaz_log(YLOG_WARN, "Missing equal-sign/tilde in filter"); return 0; } *(eq++) = '\0';