You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by co...@apache.org on 2022/07/20 07:31:40 UTC

[ws-wss4j] branch 2_3_x-fixes updated: Fixing bug with not passing initiator boolean

This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch 2_3_x-fixes
in repository https://gitbox.apache.org/repos/asf/ws-wss4j.git


The following commit(s) were added to refs/heads/2_3_x-fixes by this push:
     new 4e8bb2d27 Fixing bug with not passing initiator boolean
4e8bb2d27 is described below

commit 4e8bb2d278e64ad738337ee3f9e06851f62a432a
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Wed Jul 20 08:08:27 2022 +0100

    Fixing bug with not passing initiator boolean
---
 ws-security-stax/src/main/java/org/apache/wss4j/stax/setup/WSSec.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ws-security-stax/src/main/java/org/apache/wss4j/stax/setup/WSSec.java b/ws-security-stax/src/main/java/org/apache/wss4j/stax/setup/WSSec.java
index abb1c31a7..a112a9ae5 100644
--- a/ws-security-stax/src/main/java/org/apache/wss4j/stax/setup/WSSec.java
+++ b/ws-security-stax/src/main/java/org/apache/wss4j/stax/setup/WSSec.java
@@ -135,7 +135,7 @@ public class WSSec {
      */
     public static InboundWSSec getInboundWSSec(WSSSecurityProperties securityProperties,
             boolean initiator) throws WSSecurityException {
-        return getInboundWSSec(securityProperties, false, false);
+        return getInboundWSSec(securityProperties, initiator, false);
     }
 
     /**