From aeb5cc9755e2e4d6a788f0bf162017215772cbf8 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 16 Jul 2003 21:02:05 +0000 Subject: [PATCH] Set resultCount to 0 in sort handler of frontend server --- CHANGELOG | 3 +++ server/seshigh.c | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 4d01a8b..1695a7f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ Possible compatibility problems with earlier versions marked with '*'. +SortResponse member resultCount now set to NULL in sort handler of +frontend server. + OPAC support ZOOM. ZOOM_record_get returns OPAC info (as XML) if type is "opac". diff --git a/server/seshigh.c b/server/seshigh.c index 065b860..8732dc4 100644 --- a/server/seshigh.c +++ b/server/seshigh.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2003, Index Data * See the file LICENSE for details. * - * $Id: seshigh.c,v 1.159 2003-05-24 19:34:43 adam Exp $ + * $Id: seshigh.c,v 1.160 2003-07-16 21:02:06 adam Exp $ */ /* @@ -2298,6 +2298,7 @@ static Z_APDU *process_sortRequest(association *assoc, request *reqb, res->num_diagnostics = 0; res->diagnostics = 0; } + res->resultCount = 0; res->otherInfo = 0; apdu->which = Z_APDU_sortResponse; -- 1.7.10.4