[cpp-sp] branch main updated: Remove extraneous constructor call.

Codeberg noreply at shibboleth.net
Thu Jan 22 19:58:53 UTC 2026


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/9b77e821fb639476dfe258512f69d5b47620e4ba

The following commit(s) were added to refs/heads/main by this push:
     new 9b77e821 Remove extraneous constructor call.
9b77e821 is described below

commit 9b77e821fb639476dfe258512f69d5b47620e4ba
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Jan 22 14:58:41 2026 -0500

    Remove extraneous constructor call.
---
 shibsp/remoting/impl/CurlHTTPRemotingService.cpp | 7 +++----
 shibsp/remoting/impl/WinHTTPRemotingService.cpp  | 3 +--
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/shibsp/remoting/impl/CurlHTTPRemotingService.cpp b/shibsp/remoting/impl/CurlHTTPRemotingService.cpp
index 2e5168ee..87cf72b4 100644
--- a/shibsp/remoting/impl/CurlHTTPRemotingService.cpp
+++ b/shibsp/remoting/impl/CurlHTTPRemotingService.cpp
@@ -170,10 +170,9 @@ namespace shibsp {
     }
 };
 
-CurlHTTPRemotingService::CurlHTTPRemotingService(ptree& pt)
-    : AbstractHTTPRemotingService(pt), AbstractRemotingService(pt),
-        m_log(Category::getInstance(SHIBSP_LOGCAT ".RemotingService")),
-            m_curlInit(false), m_poolsize(20), m_chunked(true)
+CurlHTTPRemotingService::CurlHTTPRemotingService(ptree& pt) : AbstractHTTPRemotingService(pt),
+    m_log(Category::getInstance(SHIBSP_LOGCAT ".RemotingService")),
+        m_curlInit(false), m_poolsize(20), m_chunked(true)
 {
 
     CURLcode status = curl_global_init(CURL_GLOBAL_ALL);
diff --git a/shibsp/remoting/impl/WinHTTPRemotingService.cpp b/shibsp/remoting/impl/WinHTTPRemotingService.cpp
index b3c02033..dc67ef44 100644
--- a/shibsp/remoting/impl/WinHTTPRemotingService.cpp
+++ b/shibsp/remoting/impl/WinHTTPRemotingService.cpp
@@ -222,8 +222,7 @@ StatusCallback(
     }
 };
 
-WinHTTPRemotingService::WinHTTPRemotingService(ptree& pt)
-    : AbstractHTTPRemotingService(pt), AbstractRemotingService(pt),
+WinHTTPRemotingService::WinHTTPRemotingService(ptree& pt) : AbstractHTTPRemotingService(pt),
     m_log(Category::getInstance(SHIBSP_LOGCAT ".RemotingService")),
     m_secure(false), m_caChainEngine(nullptr), m_caStore(nullptr),
     m_init(false), m_chunked(defaultChunking)

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


More information about the commits mailing list