From f3328e07c858cad641f81bb4b758226d2d79da43 Mon Sep 17 00:00:00 2001 From: Dennis Schafroth Date: Thu, 15 Jul 2010 14:35:28 +0200 Subject: [PATCH] Fix the FacetTerm. Remove the IMPLICIT on Term. Makes the decoder crash. --- src/facet.asn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/facet.asn b/src/facet.asn index e4adea1..f22eedf 100644 --- a/src/facet.asn +++ b/src/facet.asn @@ -10,12 +10,12 @@ FacetField ::= SEQUENCE { -- 2=sortorder 0=most frequent, 1=least frequent, .. -- 3=limit (integer) attributes [1] IMPLICIT AttributeList, - terms [2] IMPLICIT SEQUENCE OF FacetTerm OPTIONAL + terms [2] IMPLICIT SEQUENCE OF FacetTerm OPTIONAL } FacetTerm ::= SEQUENCE { - term [1] IMPLICIT Term, - count [2] IMPLICIT INTEGER + term Term, + count INTEGER } END -- 1.7.10.4