X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=zutil%2Fsoap.c;h=2fbbc1740ba03c0fb66f8ea99c7fe10c913e8888;hb=b0555501e434d0f71f97ea17f282db2e795ff950;hp=0b34cdbbdbec7596e7865c4df880b66936e7060c;hpb=6a9f385c94281b3dbddd612f388837c01661c5c5;p=yaz-moved-to-github.git diff --git a/zutil/soap.c b/zutil/soap.c index 0b34cdb..2fbbc17 100644 --- a/zutil/soap.c +++ b/zutil/soap.c @@ -2,7 +2,7 @@ * Copyright (c) 2002-2003, Index Data. * See the file LICENSE for details. * - * $Id: soap.c,v 1.7 2003-03-18 13:34:37 adam Exp $ + * $Id: soap.c,v 1.9 2003-04-23 20:36:05 adam Exp $ */ #include @@ -30,13 +30,6 @@ int z_soap_error(ODR o, Z_SOAP *p, return -1; } -int z_soap_codec(ODR o, Z_SOAP **pp, - char **content_buf, int *content_len, - Z_SOAP_Handler *handlers) -{ - return z_soap_codec_enc(o, pp, content_buf, content_len, handlers, 0); -} - int z_soap_codec_enc(ODR o, Z_SOAP **pp, char **content_buf, int *content_len, Z_SOAP_Handler *handlers, @@ -236,11 +229,11 @@ int z_soap_codec_enc(ODR o, Z_SOAP **pp, return 0; } #else -int z_soap_codec(ODR o, Z_SOAP **pp, - char **content_buf, int *content_len, - Z_SOAP_Handler *handlers) +int z_soap_codec_enc(ODR o, Z_SOAP **pp, + char **content_buf, int *content_len, + Z_SOAP_Handler *handlers, const char *encoding) { - const char *err_xml = + static char *err_xml = "\n" "\n" @@ -260,3 +253,10 @@ int z_soap_codec(ODR o, Z_SOAP **pp, return -1; } #endif +int z_soap_codec(ODR o, Z_SOAP **pp, + char **content_buf, int *content_len, + Z_SOAP_Handler *handlers) +{ + return z_soap_codec_enc(o, pp, content_buf, content_len, handlers, 0); +} +