Commit a60cc6b4 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Don't use *from++ in tolower as this is implemented as a macro on some

platforms. Thanks to Shayne Murray <Shayne.Murray@Polycom.com> for
reporting this issue.
parent 2c1f5ce4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -464,7 +464,8 @@ static int asn1_string_canon(ASN1_STRING *out, ASN1_STRING *in)
			}
		else
			{
			*to++ = tolower(*from++);
			*to++ = tolower(*from);
			from++;
			i++;
			}
		}