From: Adam Dickmeiss Date: Mon, 17 Jan 2005 10:19:48 +0000 (+0000) Subject: Do not declare several variables in non-XML mode X-Git-Tag: YAZ.2.0.34~43 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=5fc363ebc5bf97dc2285bceaa742b69e19c4c8b2 Do not declare several variables in non-XML mode --- diff --git a/src/srwutil.c b/src/srwutil.c index 18113c0..e7afb51 100644 --- a/src/srwutil.c +++ b/src/srwutil.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: srwutil.c,v 1.24 2005-01-16 21:56:24 adam Exp $ + * $Id: srwutil.c,v 1.25 2005-01-17 10:19:48 adam Exp $ */ /** * \file srwutil.c @@ -253,6 +253,7 @@ int yaz_sru_decode(Z_HTTP_Request *hreq, Z_SRW_PDU **srw_pdu, { char *db = "Default"; const char *p0 = hreq->path, *p1; +#if HAVE_XML2 const char *operation = 0; char *version = 0; char *query = 0; @@ -269,6 +270,7 @@ int yaz_sru_decode(Z_HTTP_Request *hreq, Z_SRW_PDU **srw_pdu, char *maximumTerms = 0; char *responsePosition = 0; char *extraRequestData = 0; +#endif char **uri_name; char **uri_val;