upstream: fix base16 parsing; currently unused. From Renaud Allard

OpenBSD-Commit-ID: 3f6e5d4c6a2550d5a7e3c33bcd895b7f8e42196b
This commit is contained in:
djm@openbsd.org
2026-03-28 05:10:25 +00:00
committed by Damien Miller
parent 21ecb5fd72
commit 8331cb9daa

View File

@@ -1,4 +1,4 @@
/* $OpenBSD: sshbuf-misc.c,v 1.22 2025/09/04 00:32:31 djm Exp $ */
/* $OpenBSD: sshbuf-misc.c,v 1.23 2026/03/28 05:10:25 djm Exp $ */
/*
* Copyright (c) 2011 Damien Miller
*
@@ -95,7 +95,7 @@ b16tod(const char v)
return v - '0';
if (v >= 'a' && v <= 'f')
return 10 + v - 'a';
if (v >= 'A' && v <= 'A')
if (v >= 'A' && v <= 'F')
return 10 + v - 'A';
return -1;
}