* Copyright (c) 1995-2003, Index Data
* See the file LICENSE for details.
*
- * $Id: seshigh.c,v 1.5 2003-12-20 00:51:19 adam Exp $
+ * $Id: seshigh.c,v 1.6 2003-12-21 11:33:29 adam Exp $
*/
/*
}
}
-
static void srw_bend_explain(association *assoc, request *req,
Z_SRW_explainRequest *srw_req,
Z_SRW_explainResponse *srw_res)
assoc->init->implementation_name,
odr_prepend(assoc->encode, "GFS", resp->implementationName));
- version = odr_strdup(assoc->encode, "$Revision: 1.5 $");
+ version = odr_strdup(assoc->encode, "$Revision: 1.6 $");
if (strlen(version) > 10) /* check for unexpanded CVS strings */
version[strlen(version)-2] = '\0';
resp->implementationVersion = odr_prepend(assoc->encode,
* Copyright (c) 2002-2003, Index Data.
* See the file LICENSE for details.
*
- * $Id: zgdu.c,v 1.1 2003-10-27 12:21:36 adam Exp $
+ * $Id: zgdu.c,v 1.2 2003-12-21 11:33:29 adam Exp $
*/
#include <yaz/odr.h>
const char *z_HTTP_header_lookup(Z_HTTP_Header *hp, const char *n)
{
for (; hp; hp = hp->next)
- if (!strcmp(hp->name, n))
+ if (!yaz_matchstr(hp->name, n))
return hp->value;
return 0;
}