X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Fzlogs.c;h=73942e25f7c145ed4807012a22fee397aa4c2b9e;hb=0481a9d462ba15064121ecd84a5d59b70fb000a4;hp=7c820ba37e68c80ab47d46161a2f8d3d599a8f07;hpb=0c2c147590a99fba778d04dc3e695587b56f6961;p=idzebra-moved-to-github.git diff --git a/index/zlogs.c b/index/zlogs.c index 7c820ba..73942e2 100644 --- a/index/zlogs.c +++ b/index/zlogs.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: zlogs.c,v $ - * Revision 1.7 1998-01-29 13:40:11 adam + * Revision 1.8 1998-04-02 14:35:29 adam + * First version of Zebra that works with compiled ASN.1. + * + * Revision 1.7 1998/01/29 13:40:11 adam * Better logging for scan service. * * Revision 1.6 1997/09/29 09:06:41 adam @@ -217,10 +220,20 @@ static void zlog_attributes (Z_AttributesPlusTerm *t, int level, { int of, i; char str[80]; - for (of = 0; of < t->num_attributes; of++) +#ifdef ASN_COMPILED + int num_attributes = t->attributes->num_attributes; +#else + int num_attributes = t->num_attributes; +#endif + + for (of = 0; of < num_attributes; of++) { Z_AttributeElement *element; +#ifdef ASN_COMPILED + element = t->attributes->attributes[of]; +#else element = t->attributeList[of]; +#endif switch (element->which) {