From 8b40c551d14fe46439095674ba19cee2fe9a8e1c Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 9 Aug 2005 18:29:35 +0000 Subject: [PATCH] Fixed setting of record syntax for Extended Service update in ZOOM --- src/zoom-c.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/zoom-c.c b/src/zoom-c.c index 3547e0b..130aed4 100644 --- a/src/zoom-c.c +++ b/src/zoom-c.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: zoom-c.c,v 1.45 2005-06-25 15:46:06 adam Exp $ + * $Id: zoom-c.c,v 1.46 2005-08-09 18:29:35 adam Exp $ */ /** * \file zoom-c.c @@ -1045,7 +1045,7 @@ static zoom_ret ZOOM_connection_send_init (ZOOM_connection c) ZOOM_options_get(c->options, "implementationName"), odr_prepend(c->odr_out, "ZOOM-C", ireq->implementationName)); - version = odr_strdup(c->odr_out, "$Revision: 1.45 $"); + version = odr_strdup(c->odr_out, "$Revision: 1.46 $"); if (strlen(version) > 10) /* check for unexpanded CVS strings */ version[strlen(version)-2] = '\0'; ireq->implementationVersion = odr_prepend(c->odr_out, @@ -2648,7 +2648,7 @@ static Z_APDU *create_update_package(ZOOM_package p) record_buf = "void"; syntax_oid = VAL_SUTRS; } - if (syntax_oid != VAL_NONE) + if (syntax_oid == VAL_NONE) syntax_oid = VAL_TEXT_XML; if (num_db > 0) -- 1.7.10.4