From dd801b3ca349d3d610941c2fe53aad460b7f2fa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Tue, 19 Jul 2005 18:04:00 +0000 Subject: [PATCH] (der_match_tag): tag is unsigned int. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15670 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/asn1/der_get.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/asn1/der_get.c b/lib/asn1/der_get.c index daa1606e5..ec683e6ac 100644 --- a/lib/asn1/der_get.c +++ b/lib/asn1/der_get.c @@ -414,7 +414,7 @@ der_match_tag (const unsigned char *p, size_t len, size_t l; Der_class thisclass; Der_type thistype; - int thistag; + unsigned int thistag; int e; e = der_get_tag (p, len, &thisclass, &thistype, &thistag, &l);