X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2Fodr.c;h=1dbbda68d2a1a5dd30c3fd2db9f04f791cbc9840;hb=84e4c0195cfd14430102ccb7bc9deeb8951b55d1;hp=301f15144604aa24fd3e388649e6f0aa70637e59;hpb=63aea810bb0d282daf5468eca9f5aa6a5611fc2e;p=yaz-moved-to-github.git diff --git a/odr/odr.c b/odr/odr.c index 301f151..1dbbda6 100644 --- a/odr/odr.c +++ b/odr/odr.c @@ -4,7 +4,19 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: odr.c,v $ - * Revision 1.21 1996-07-26 13:38:19 quinn + * Revision 1.24 1997-09-01 08:51:07 adam + * New windows NT/95 port using MSV5.0. Had to avoid a few static + * variables used in function ber_tag. These are now part of the + * ODR structure. + * + * Revision 1.23 1997/04/30 08:52:10 quinn + * Null + * + * Revision 1.22 1996/10/08 12:58:17 adam + * New ODR function, odr_choice_enable_bias, to control behaviour of + * odr_choice_bias. + * + * Revision 1.21 1996/07/26 13:38:19 quinn * Various smaller things. Gathered header-files. * * Revision 1.20 1995/11/08 17:41:32 quinn @@ -129,6 +141,8 @@ ODR odr_createmem(int direction) r->ecb.can_grow = 1; r->buflen = 0; r->mem = nmem_create(); + r->enable_bias = 1; + r->odr_ber_tag.lclass = -1; odr_reset(r); return r; }