use strtoul for conversion

pull/2616/head
Pliable Pixels 2019-05-11 16:09:42 -04:00
parent 053e57af62
commit 3e66be27a8
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ std::pair <std::string, unsigned int> verifyToken(std::string jwt_token_str, std
std::string iat_str = decoded.get_payload_claim("iat").as_string();
Info ("Got IAT token=%s", iat_str);
Info ("Got IAT token=%s", iat_str.c_str());
token_issued_at = strtoul(iat_str.c_str(), NULL,0 );
}
else {