You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2022/01/26 16:18:48 UTC

[cxf] branch 3.4.x-fixes updated (a612bf0 -> 7ebea0e)

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

coheigea pushed a change to branch 3.4.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git.


    from a612bf0  Recording .gitmergeinfo Changes
     new b93b600  Fixed a bug in Base64Utility not passing the urlSafe parameter
     new 7ebea0e  Recording .gitmergeinfo Changes

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitmergeinfo                                                    | 1 +
 core/src/main/java/org/apache/cxf/common/util/Base64Utility.java | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

[cxf] 02/02: Recording .gitmergeinfo Changes

Posted by co...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch 3.4.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit 7ebea0ee7b8da32ed96c5ad2bd371404d228a15e
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Wed Jan 26 15:44:42 2022 +0000

    Recording .gitmergeinfo Changes
---
 .gitmergeinfo | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitmergeinfo b/.gitmergeinfo
index e8676d6..9a6c22f 100644
--- a/.gitmergeinfo
+++ b/.gitmergeinfo
@@ -28,6 +28,7 @@ B 34a8f691a1926a26d2ecefa527eaf76f68b98def
 B 3786f439160432c37504c5b816905bee193587ea
 B 3a05ddf21ef1e76c8b7b440213ff1afbf7757fbf
 B 3afa24650ef1988c8464b5a48853a6f75ff794f9
+B 3cdda590458f07313a3a24b72dabaf21921eeb6a
 B 3e652c75ba033152b93faf957b6febff02e8afaf
 B 40ba580e4f3ba5a2f68f3ae75982cf4d0c0885d7
 B 4119762989d4976bfbe51e78a763304c83ecafa0

[cxf] 01/02: Fixed a bug in Base64Utility not passing the urlSafe parameter

Posted by co...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch 3.4.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit b93b600d14edcebe6d2a27b3455b2231485c5526
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Wed Jan 26 15:43:56 2022 +0000

    Fixed a bug in Base64Utility not passing the urlSafe parameter
    
    (cherry picked from commit cc3b622410bb67d93447e703199324a36ffd1596)
    (cherry picked from commit 93d813e9bf33bbb8121f0536c01b1fe378f84e54)
---
 core/src/main/java/org/apache/cxf/common/util/Base64Utility.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/cxf/common/util/Base64Utility.java b/core/src/main/java/org/apache/cxf/common/util/Base64Utility.java
index ed1a1cc..22bb96f 100644
--- a/core/src/main/java/org/apache/cxf/common/util/Base64Utility.java
+++ b/core/src/main/java/org/apache/cxf/common/util/Base64Utility.java
@@ -251,7 +251,7 @@ public final class Base64Utility {
     }
 
     public static String encode(byte[] id, boolean urlSafe) {
-        char[] cd = encodeChunk(id, 0, id.length);
+        char[] cd = encodeChunk(id, 0, id.length, urlSafe);
         return new String(cd, 0, cd.length);
     }