From: Adam Dickmeiss Date: Tue, 15 Aug 2006 13:30:00 +0000 (+0000) Subject: Fix interpretation of sru command X-Git-Tag: YAZ.2.1.26~2 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=73709d08e8f3c85cbca1c8d883aac65bd6ffe8d6 Fix interpretation of sru command --- diff --git a/client/client.c b/client/client.c index a2d1116..5492b84 100644 --- a/client/client.c +++ b/client/client.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2006, Index Data ApS * See the file LICENSE for details. * - * $Id: client.c,v 1.311 2006-07-06 10:17:51 adam Exp $ + * $Id: client.c,v 1.312 2006-08-15 13:30:00 adam Exp $ */ /** \file client.c * \brief yaz-client program @@ -2425,11 +2425,11 @@ static int cmd_sru(const char *arg) } else { - if (yaz_matchstr(arg, "post")) + if (!yaz_matchstr(arg, "post")) sru_method = "post"; - else if (yaz_matchstr(arg, "get")) + else if (!yaz_matchstr(arg, "get")) sru_method = "get"; - else if (yaz_matchstr(arg, "soap")) + else if (!yaz_matchstr(arg, "soap")) sru_method = "soap"; else {