X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fber_len.c;h=00be87c318da36e11f6ee4d8934f7d69e1454592;hp=1a02fdebef49239ace7ffa9b487ee71292949aa7;hb=2979c8fc3b5c53c06facad850dcae09645b43044;hpb=fb6d99a0c7e07d9cc4a315c447deaf6564a85505 diff --git a/src/ber_len.c b/src/ber_len.c index 1a02fde..00be87c 100644 --- a/src/ber_len.c +++ b/src/ber_len.c @@ -1,8 +1,8 @@ /* - * Copyright (C) 1995-2005, Index Data ApS + * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: ber_len.c,v 1.4 2005-06-25 15:46:03 adam Exp $ + * $Id: ber_len.c,v 1.6 2007-01-03 08:42:15 adam Exp $ */ /** @@ -35,16 +35,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 +102,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 +124,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); } /*