From cf71a6f3494d721a1d7bd71f6bc0e4080906fc6b Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 11 Jun 2003 22:08:56 +0000 Subject: [PATCH] Dont set cookie in init response if it's empty --- src/yaz-proxy.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/yaz-proxy.cpp b/src/yaz-proxy.cpp index b5d6720..562b72c 100644 --- a/src/yaz-proxy.cpp +++ b/src/yaz-proxy.cpp @@ -2,7 +2,7 @@ * Copyright (c) 1998-2003, Index Data. * See the file LICENSE for details. * - * $Id: yaz-proxy.cpp,v 1.41 2003-06-11 21:59:07 adam Exp $ + * $Id: yaz-proxy.cpp,v 1.42 2003-06-11 22:08:56 adam Exp $ */ #include @@ -442,7 +442,7 @@ void Yaz_Proxy::recv_Z_PDU(Z_APDU *apdu) { Z_APDU *apdu = m_client->m_initResponse; apdu->u.initResponse->otherInfo = 0; - if (m_client->m_cookie) + if (m_client->m_cookie && *m_client->m_cookie) set_otherInformationString(apdu, VAL_COOKIE, 1, m_client->m_cookie); send_Z_PDU(apdu); -- 1.7.10.4