X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2Fber_any.c;h=a669294a498a7bacded70bbc672a4cf8300e963f;hb=62bcf7a811cd3151ac10f93317c9ddfa6b16f539;hp=7b56f0fbc958ea680c4639e9d2c98ded9641160d;hpb=bf4149c63ad2e11429e302a89f472de52b4d7ce8;p=yaz-moved-to-github.git diff --git a/odr/ber_any.c b/odr/ber_any.c index 7b56f0f..a669294 100644 --- a/odr/ber_any.c +++ b/odr/ber_any.c @@ -1,10 +1,19 @@ /* - * Copyright (c) 1995, Index Data + * Copyright (c) 1995-1999, Index Data * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * * $Log: ber_any.c,v $ - * Revision 1.13 1997-05-14 06:53:56 adam + * Revision 1.16 1999-11-30 13:47:11 adam + * Improved installation. Moved header files to include/yaz. + * + * Revision 1.15 1999/01/08 11:23:20 adam + * Added const modifier to some of the BER/ODR encoding routines. + * + * Revision 1.14 1998/02/11 11:53:34 adam + * Changed code so that it compiles as C++. + * + * Revision 1.13 1997/05/14 06:53:56 adam * C++ support. * * Revision 1.12 1995/09/29 17:12:15 quinn @@ -46,7 +55,7 @@ * */ -#include +#include int ber_any(ODR o, Odr_any **p) { @@ -60,7 +69,7 @@ int ber_any(ODR o, Odr_any **p) o->error = OPROTO; return 0; } - (*p)->buf = odr_malloc(o, res); + (*p)->buf = (unsigned char *)odr_malloc(o, res); memcpy((*p)->buf, o->bp, res); (*p)->len = (*p)->size = res; o->bp += res; @@ -77,10 +86,10 @@ int ber_any(ODR o, Odr_any **p) /* * Return length of BER-package or 0. */ -int completeBER(unsigned char *buf, int len) +int completeBER(const unsigned char *buf, int len) { int res, ll, zclass, tag, cons; - unsigned char *b = buf; + const unsigned char *b = buf; if (!len) return 0;