[cpp-sp] branch main updated: Correct a second mis-called log method.
Codeberg
noreply at shibboleth.net
Fri Dec 5 21:48:25 UTC 2025
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository cpp-sp.
View the commit online:
https://codeberg.org/Shibboleth/cpp-sp/commit/6ef8aaf585929c3ff600a2c0fdc786f61a2def1b
The following commit(s) were added to refs/heads/main by this push:
new 6ef8aaf5 Correct a second mis-called log method.
6ef8aaf5 is described below
commit 6ef8aaf585929c3ff600a2c0fdc786f61a2def1b
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Dec 5 16:48:14 2025 -0500
Correct a second mis-called log method.
---
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 3d8fec0a..ec6df689 100644
--- a/shibsp/session/impl/AbstractSessionCache.cpp
+++ b/shibsp/session/impl/AbstractSessionCache.cpp
@@ -318,7 +318,7 @@ void AbstractSessionCache::log(const SPRequest* request, Category& log, Priority
request->log(level, formatString, va);
}
else {
- log.log(level, formatString, va);
+ log.logva(level, formatString, va);
}
va_end(va);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list