Fix oct2dec typo

F-2069
pull/908/head
Andrew Hutchings 2026-04-08 12:30:48 +01:00
parent b318bc95aa
commit 2abd046148
1 changed files with 1 additions and 1 deletions

View File

@ -17535,7 +17535,7 @@ int wolfSSH_oct2dec(WOLFSSH* ssh, byte* oct, word32 octSz)
for (i = 0; i < octSz; i++)
{
if (oct[i] < '0' || oct[0] > '7') {
if (oct[i] < '0' || oct[i] > '7') {
ret = WS_BAD_ARGUMENT;
break;
}