From: Sebastian Hammer Date: Thu, 16 Feb 1995 15:33:45 +0000 (+0000) Subject: Fixed bug in KWAQS generator X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=commitdiff_plain;ds=inline;h=799bd870edcfb1ea7318299ca1360da404b47cf8;p=egate.git Fixed bug in KWAQS generator --- diff --git a/zlayer/zaccess.c b/zlayer/zaccess.c index 374feda..d0eead4 100644 --- a/zlayer/zaccess.c +++ b/zlayer/zaccess.c @@ -2,7 +2,10 @@ * Europagate, 1995 * * $Log: zaccess.c,v $ - * Revision 1.3 1995/02/16 15:20:45 quinn + * Revision 1.4 1995/02/16 15:33:45 quinn + * Fixed bug in KWAQS generator + * + * Revision 1.3 1995/02/16 15:20:45 quinn * Added initialization of response from search * * Revision 1.2 1995/02/16 15:14:53 quinn @@ -56,7 +59,7 @@ int rpn2kwaqs(struct ccl_rpn_node *q, char **p) for (i = q->u.t.attr_list; i; i = i->next) { sprintf(*p, "%d,%d%s", i->type, i->value, i->next ? - " " : ""); + "," : ""); *p += strlen(*p); } strcat(*p, "]");