(find_tag): Fix return in TType case.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15656 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-07-19 14:16:25 +00:00
parent c2385704fd
commit a42c7b8b15

View File

@@ -160,7 +160,8 @@ find_tag (const Type *t,
*tag = t->tag.tagvalue;
break;
case TType:
return find_tag(t->symbol->type, cl, ty, tag);
find_tag(t->symbol->type, cl, ty, tag);
return;
case TUTCTime:
*cl = ASN1_C_UNIV;
*ty = PRIM;