projects
/
yaz-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
df0a3ba
)
Fix the FacetTerm.
author
Dennis Schafroth
<dennis@indexdata.com>
Thu, 15 Jul 2010 12:35:28 +0000
(14:35 +0200)
committer
Dennis Schafroth
<dennis@indexdata.com>
Thu, 15 Jul 2010 12:35:28 +0000
(14:35 +0200)
Remove the IMPLICIT on Term. Makes the decoder crash.
src/facet.asn
patch
|
blob
|
history
diff --git
a/src/facet.asn
b/src/facet.asn
index
e4adea1
..
f22eedf
100644
(file)
--- 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