From 19204ab1ac2d64fe405e254a9211dc0e07ad2066 Mon Sep 17 00:00:00 2001 From: David Garske Date: Tue, 7 Feb 2017 11:07:48 -0800 Subject: [PATCH] Fix comment. --- wolfcrypt/src/asn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/src/asn.c b/wolfcrypt/src/asn.c index 925f75709..55993606b 100644 --- a/wolfcrypt/src/asn.c +++ b/wolfcrypt/src/asn.c @@ -656,7 +656,7 @@ static int GetExplicitVersion(const byte* input, word32* inOutIdx, int* version, return ASN_PARSE_E; if (input[idx++] == (ASN_CONTEXT_SPECIFIC | ASN_CONSTRUCTED)) { - *inOutIdx = ++idx; /* skip header byte */ + *inOutIdx = ++idx; /* skip header */ return GetMyVersion(input, inOutIdx, version, maxIdx); }