X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fber_int.c;h=e445bc94fea17784cb4a54f609cc1752a5688fb9;hp=fc89b0deb1c3b255fbd68fc07d77320e47b86da9;hb=455798a3154b5c08c872ca0fb90607ddea575038;hpb=825d22351b1d59c71e98357b4931bf7bb67daa3a diff --git a/src/ber_int.c b/src/ber_int.c index fc89b0d..e445bc9 100644 --- a/src/ber_int.c +++ b/src/ber_int.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: ber_int.c,v 1.4 2005-01-16 21:51:50 adam Exp $ + * $Id: ber_int.c,v 1.6 2005-08-11 14:21:55 adam Exp $ */ /** @@ -41,21 +41,21 @@ int ber_integer(ODR o, int *val) switch (o->direction) { case ODR_DECODE: - if ((res = ber_decinteger(o->bp, val, odr_max(o))) <= 0) - { - odr_seterror(o, OPROTO, 50); - return 0; - } - o->bp += res; - return 1; + if ((res = ber_decinteger(o->bp, val, odr_max(o))) <= 0) + { + odr_seterror(o, OPROTO, 50); + return 0; + } + o->bp += res; + return 1; case ODR_ENCODE: - if ((res = ber_encinteger(o, *val)) < 0) - return 0; - return 1; + if ((res = ber_encinteger(o, *val)) < 0) + return 0; + return 1; case ODR_PRINT: - return 1; + return 1; default: - odr_seterror(o, OOTHER, 51); return 0; + odr_seterror(o, OOTHER, 51); return 0; } } @@ -77,9 +77,6 @@ int ber_encinteger(ODR o, int val) return -1; if (odr_write(o, (unsigned char*) tmp.c + a, len) < 0) return -1; -#ifdef ODR_DEBUG - fprintf(stderr, "[val=%d]", val); -#endif return 0; } @@ -111,8 +108,13 @@ int ber_decinteger(const unsigned char *buf, int *val, int max) *val = ntohl(tmp.i); b += len; -#ifdef ODR_DEBUG - fprintf(stderr, "[val=%d]", *val); -#endif return b - buf; } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +