[cpp-sp] branch main updated: Correct underlying va_list log call.

Codeberg noreply at shibboleth.net
Fri Dec 5 21:43:12 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/dbd421fcc0b175e925277872121c7b63a758ef44

The following commit(s) were added to refs/heads/main by this push:
     new dbd421fc Correct underlying va_list log call.
dbd421fc is described below

commit dbd421fcc0b175e925277872121c7b63a758ef44
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Dec 5 16:43:01 2025 -0500

    Correct underlying va_list log call.
---
 shibsp/AbstractSPRequest.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shibsp/AbstractSPRequest.cpp b/shibsp/AbstractSPRequest.cpp
index 55b985aa..9e035bae 100644
--- a/shibsp/AbstractSPRequest.cpp
+++ b/shibsp/AbstractSPRequest.cpp
@@ -464,7 +464,7 @@ void AbstractSPRequest::log(Priority::Value level, const char* formatString, va_
             m_log.log(level, "%s %s", ctx, msg.c_str());
         }
         else {
-            m_log.log(level, formatString, args);
+            m_log.logva(level, formatString, args);
         }
     }
 }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list