X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2Fber_tag.c;h=fd23a966c0962ebca8912e4fd0739d5ea6f066cf;hb=88ad85bd973c764146777e7cfe2e4a56c71994b9;hp=21c368596b5e6df77b910506751f50acd58201fe;hpb=a7d28a25277a208edb9c44d124f179cc2be6db70;p=yaz-moved-to-github.git diff --git a/odr/ber_tag.c b/odr/ber_tag.c index 21c3685..fd23a96 100644 --- a/odr/ber_tag.c +++ b/odr/ber_tag.c @@ -4,7 +4,13 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: ber_tag.c,v $ - * Revision 1.1 1995-02-02 16:21:53 quinn + * Revision 1.3 1995-02-09 15:51:46 quinn + * Works better now. + * + * Revision 1.2 1995/02/07 17:52:59 quinn + * A damn mess, but now things work, I think. + * + * Revision 1.1 1995/02/02 16:21:53 quinn * First kick. * */ @@ -27,6 +33,8 @@ int ber_tag(ODR o, const void *p, int class, int tag, int *constructed) int rd; o->t_class = -1; + if (o->buf == o->bp) /* This is insurance. It shouldn't be necessary */ + lclass = -1; switch (o->direction) { case ODR_ENCODE: @@ -37,16 +45,20 @@ int ber_tag(ODR o, const void *p, int class, int tag, int *constructed) return -1; o->bp += rd; o->left -= rd; - fprintf(stderr, "[class=%d,tag=%d,cons=%d]", class, tag, +#ifdef ODR_DEBUG + fprintf(stderr, "\n[class=%d,tag=%d,cons=%d]", class, tag, *constructed); +#endif return 1; case ODR_DECODE: if (lclass < 0) { if ((br = ber_dectag(o->bp, &lclass, <ag, &lcons)) <= 0) return -1; - fprintf(stderr, "[class=%d,tag=%d,cons=%d]", lclass, ltag, +#ifdef ODR_DEBUG + fprintf(stderr, "\n[class=%d,tag=%d,cons=%d]", lclass, ltag, lcons); +#endif } if (class == lclass && tag == ltag) {