+yaz (2.0.3-3) unstable; urgency=low
+
+ * Fix CCL->RPN code for attribute strings.
+
+ -- Adam Dickmeiss <adam@gamma.indexdata.dk> Mon, 23 Jun 2003 14:38:01 +0200
+
yaz (2.0.3-2) unstable; urgency=low
* String attributes for CCL parser.
* Copyright (c) 1996-2003, Index Data.
* See the file LICENSE for details.
*
- * $Id: yaz-ccl.c,v 1.20 2003-06-23 10:22:21 adam Exp $
+ * $Id: yaz-ccl.c,v 1.21 2003-06-23 12:38:39 adam Exp $
*/
#include <stdio.h>
wrbuf_puts (w, tmpattr);
break;
case CCL_RPN_ATTR_STRING:
- sprintf(tmpattr, "%d ", att->type);
+ sprintf(tmpattr, "%d=", att->type);
wrbuf_puts (w, tmpattr);
wrbuf_puts(w, att->value.str);
break;