[cpp-sp] 02/02: Fix stray parentheses
Scott Cantor
cantor.2 at osu.edu
Wed Jul 30 15:34:22 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=2d6aef80d1ca6fa61f8809d73b841224859d239c
commit 2d6aef80d1ca6fa61f8809d73b841224859d239c
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Jul 30 11:34:16 2025 -0400
Fix stray parentheses
---
apache/mod_shib_24.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/apache/mod_shib_24.cpp b/apache/mod_shib_24.cpp
index 3a262178..a2bf2f53 100644
--- a/apache/mod_shib_24.cpp
+++ b/apache/mod_shib_24.cpp
@@ -1311,12 +1311,12 @@ extern "C" const char* shib_deprecated_table_set(cmd_parms* cmd, shib_dir_config
if (!strcasecmp(cmd->cmd->name, "ShibUseHeaders")) {
ap_log_error(APLOG_MARK, APLOG_WARNING|APLOG_NOERRNO, 0, cmd->server,
"DEPRECATED: '%s On|Off' replaced with 'ShibRequestSetting useHeaders 1|0'", cmd->cmd->name);
- return shib_table_set(cmd, dc, (RequestMapper::USE_HEADERS_PROP_NAME, arg1);
+ return shib_table_set(cmd, dc, RequestMapper::USE_HEADERS_PROP_NAME, arg1);
}
else if (!strcasecmp(cmd->cmd->name, "ShibUseEnvironment")) {
ap_log_error(APLOG_MARK, APLOG_WARNING|APLOG_NOERRNO, 0, cmd->server,
"DEPRECATED: '%s On|Off' replaced with 'ShibRequestSetting useVariables 1|0'", cmd->cmd->name);
- return shib_table_set(cmd, dc, (RequestMapper::USE_VARIABLES_PROP_NAME, arg1);
+ return shib_table_set(cmd, dc, RequestMapper::USE_VARIABLES_PROP_NAME, arg1);
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list