X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fber_len.c;h=b2f9a52c0cc40231dc1cbfdc9256ed06245ab756;hp=1a02fdebef49239ace7ffa9b487ee71292949aa7;hb=7887bf02371157d3db6e769506e57c13b7b076cf;hpb=fb6d99a0c7e07d9cc4a315c447deaf6564a85505 diff --git a/src/ber_len.c b/src/ber_len.c index 1a02fde..b2f9a52 100644 --- a/src/ber_len.c +++ b/src/ber_len.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2005, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2008 Index Data * See the file LICENSE for details. - * - * $Id: ber_len.c,v 1.4 2005-06-25 15:46:03 adam Exp $ */ /** @@ -35,16 +33,10 @@ int ber_enclen(ODR o, int len, int lenlen, int exact) int n = 0; int lenpos, end; -#ifdef ODR_DEBUG - fprintf(stderr, "[len=%d]", len); -#endif if (len < 0) /* Indefinite */ { if (odr_putc(o, 0x80) < 0) return 0; -#ifdef ODR_DEBUG - fprintf(stderr, "[indefinite]"); -#endif return 0; } if (len <= 127 && (lenlen == 1 || !exact)) /* definite short form */ @@ -108,17 +100,11 @@ int ber_declen(const unsigned char *buf, int *len, int max) if (*b == 0X80) /* Indefinite */ { *len = -1; -#ifdef ODR_DEBUG - fprintf(stderr, "[len=%d]", *len); -#endif return 1; } if (!(*b & 0X80)) /* Definite short form */ { *len = (int) *b; -#ifdef ODR_DEBUG - fprintf(stderr, "[len=%d]", *len); -#endif return 1; } if (*b == 0XFF) /* reserved value */ @@ -136,9 +122,6 @@ int ber_declen(const unsigned char *buf, int *len, int max) } if (*len < 0) return -2; -#ifdef ODR_DEBUG - fprintf(stderr, "[len=%d]", *len); -#endif return (b - buf); } /*