[cpp-sp] 02/03: Flag zero creation timestamp as intended.
Scott Cantor
cantor.2 at osu.edu
Tue Jun 24 17:23:51 UTC 2025
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository cpp-sp.
View the commit online:
http://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=ceb4d6174de35ade5c9134b1ec1173b235273e82
commit ceb4d6174de35ade5c9134b1ec1173b235273e82
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Jun 24 13:23:28 2025 -0400
Flag zero creation timestamp as intended.
---
shibsp/session/impl/AbstractSessionCache.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/shibsp/session/impl/AbstractSessionCache.cpp b/shibsp/session/impl/AbstractSessionCache.cpp
index 5ce68e7b..38203bb9 100644
--- a/shibsp/session/impl/AbstractSessionCache.cpp
+++ b/shibsp/session/impl/AbstractSessionCache.cpp
@@ -114,7 +114,7 @@ bool AbstractSessionCache::isSessionDataValid(DDF& sessionData)
return false;
}
- if (sessionData["ts"].longinteger() < 0) {
+ if (sessionData["ts"].longinteger() <= 0) {
return false;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list