Skip to content

Commit

Permalink
openssl: Use correct date parsing format
Browse files Browse the repository at this point in the history
  • Loading branch information
tetsuo-cpp committed Nov 8, 2023
1 parent 7429576 commit 298bba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion harness/openssl/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ json evaluate_testcase(const json &testcase)
{
std::istringstream ss(testcase["validation_time"].template get<std::string>());
date::sys_seconds tp;
ss >> date::parse("%FT%T%Ez", tp);
ss >> date::parse("%FT%T%Z", tp);

if (ss.fail())
{
Expand Down

0 comments on commit 298bba6

Please sign in to comment.