From 5e97c59ab72aaa742f9c84669a30b2db1249cc42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 28 Apr 2006 10:51:35 +0000 Subject: [PATCH] Add missing ;'s, found by bison on a SuSE 8.2 machine. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17330 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/asn1/parse.y | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/asn1/parse.y b/lib/asn1/parse.y index b9b357e29..004a87248 100644 --- a/lib/asn1/parse.y +++ b/lib/asn1/parse.y @@ -537,8 +537,10 @@ Constraint : '(' ConstraintSpec ')' { $$ = $2; } + ; ConstraintSpec : GeneralConstraint + ; GeneralConstraint: ContentsConstraint | UserDefinedConstraint