--- 1.8.5 2002/XX/XX
+Fix in MARC decoder. Proximity logging. Fix for attribute set
+in scan handler for server. Patches by Shigeru Ishida.
+
SSL/COMSTACK updates. cs_rcvconnect completes SSL handshake. ZOOM
works with SSL.
* Copyright (c) 1995-2001, Index Data
* See the file LICENSE for details.
*
- * $Id: seshigh.c,v 1.123 2002-01-17 21:03:36 adam Exp $
+ * $Id: seshigh.c,v 1.124 2002-01-22 10:54:46 adam Exp $
*/
/*
bsrr->print = assoc->print;
bsrr->step_size = res->stepSize;
if (!(attset = oid_getentbyoid(req->attributeSet)) ||
- attset->oclass != CLASS_RECSYN)
+ attset->oclass != CLASS_ATTSET)
bsrr->attributeset = VAL_NONE;
else
bsrr->attributeset = attset->value;
* See the file LICENSE for details.
*
* $Log: marcdisp.c,v $
- * Revision 1.15 2001-10-29 09:17:19 adam
+ * Revision 1.16 2002-01-22 10:54:46 adam
+ * MARC decode fix. Attribute set fix for scan in server. Prox logging.
+ *
+ * Revision 1.15 2001/10/29 09:17:19 adam
* New function marc_display_exl - used by YAZ client. Server returns
* bad record on position 98 (for testing).
*
identifier_length = atoi_n (buf+11, 1);
else
identifier_length = 2;
- base_address = atoi_n (buf+12, 4);
+ base_address = atoi_n (buf+12, 5);
length_data_entry = atoi_n (buf+20, 1);
length_starting = atoi_n (buf+21, 1);
* Copyright (C) 1995-2001, Index Data
* All rights reserved.
*
- * $Id: logrpn.c,v 1.5 2001-11-13 23:00:43 adam Exp $
+ * $Id: logrpn.c,v 1.6 2002-01-22 10:54:46 adam Exp $
*/
#include <stdio.h>
case Z_Operator_and_not:
yaz_log (LOG_LOG, "%*.0s and-not", level, "");
break;
+ case Z_Operator_prox:
+ yaz_log (LOG_LOG, "%*.0s proximity", level, "");
+ break;
default:
yaz_log (LOG_LOG, "%*.0s unknown complex", level, "");
return;