From: Adam Dickmeiss Date: Mon, 22 Apr 2002 12:08:07 +0000 (+0000) Subject: Encoding failed print in APDU log X-Git-Tag: YAZPP.0.3~16 X-Git-Url: http://lists.indexdata.dk/?a=commitdiff_plain;h=18e58bebefe391a91ffac537ad589deb2baea89c;p=yazpp-moved-to-github.git Encoding failed print in APDU log --- diff --git a/src/yaz-z-assoc.cpp b/src/yaz-z-assoc.cpp index 052c059..e3389d3 100644 --- a/src/yaz-z-assoc.cpp +++ b/src/yaz-z-assoc.cpp @@ -2,7 +2,7 @@ * Copyright (c) 1998-2001, Index Data. * See the file LICENSE for details. * - * $Id: yaz-z-assoc.cpp,v 1.22 2001-11-04 22:36:21 adam Exp $ + * $Id: yaz-z-assoc.cpp,v 1.23 2002-04-22 12:08:07 adam Exp $ */ #include @@ -208,6 +208,8 @@ int Yaz_Z_Assoc::encode_Z_PDU(Z_APDU *apdu, char **buf, int *len) z_APDU(m_odr_print, &apdu, 0, "encode"); if (!z_APDU(m_odr_out, &apdu, 0, 0)) { + if (m_APDU_file) + fprintf (m_APDU_file, "PDU encode failed (above)"); yaz_log (LOG_LOG, "yaz_Z_Assoc::encode_Z_PDU failed"); return -1; }