From: Sebastian Hammer Date: Tue, 14 Mar 1995 16:59:24 +0000 (+0000) Subject: Fixed OPTIONAL flag in attributeelement X-Git-Tag: YAZ.1.8~1137 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=d4a0d41731122cc17df31b8e1957be28188df898;hp=231d73232fc9420212ae6889a9e8002d7a124b95 Fixed OPTIONAL flag in attributeelement --- diff --git a/asn/proto.c b/asn/proto.c index 60aba87..6b6995a 100644 --- a/asn/proto.c +++ b/asn/proto.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: proto.c,v $ - * Revision 1.7 1995-03-07 16:29:33 quinn + * Revision 1.8 1995-03-14 16:59:24 quinn + * Fixed OPTIONAL flag in attributeelement + * + * Revision 1.7 1995/03/07 16:29:33 quinn * Added authentication stuff. * * Revision 1.6 1995/03/01 14:46:03 quinn @@ -199,9 +202,9 @@ int z_AttributeElement(ODR o, Z_AttributeElement **p, int opt) return opt; return odr_implicit(o, odr_integer, &(*p)->attributeType, ODR_CONTEXT, - 120, 1) && + 120, 0) && odr_implicit(o, odr_integer, &(*p)->attributeValue, ODR_CONTEXT, - 121, 1) && + 121, 0) && odr_sequence_end(o); }