Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Vavala <[email protected]>
  • Loading branch information
bvavala committed Mar 28, 2024
1 parent a397be4 commit 47e8587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eservice/pdo/eservice/enclave/enclave/enclave.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ namespace pdo {

// check SPID format
pdo::error::ThrowIf<pdo::error::ValueError>(
! std::all_of(str.begin(), str.end(), ::isxdigit),
! std::all_of(inSpid.begin(), inSpid.end(), ::isxdigit),
"Invalid SPID format");

HexStringToBinary(this->spid.id, sizeof(this->spid.id), inSpid);
Expand Down

0 comments on commit 47e8587

Please sign in to comment.