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 2017/11/09 15:43:13 UTC

[cxf] 01/02: Fix probable bug

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

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

commit 5a9f94e8a570cce04b13257e1686f03992190947
Author: Art O Cathain <ar...@bjss.com>
AuthorDate: Thu Nov 9 14:43:28 2017 +0000

    Fix probable bug
    
    (cherry picked from commit dacfa884196e2098cbc590fd907d1001b5c3494a)
---
 .../main/java/org/apache/cxf/transport/http/auth/HttpAuthHeader.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/auth/HttpAuthHeader.java b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/auth/HttpAuthHeader.java
index fef7d12..f72b1dd 100644
--- a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/auth/HttpAuthHeader.java
+++ b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/auth/HttpAuthHeader.java
@@ -157,7 +157,7 @@ public final class HttpAuthHeader {
     }
     
     public boolean authTypeIsNegotiate() {
-        return AUTH_TYPE_DIGEST.equals(this.authType);
+        return AUTH_TYPE_NEGOTIATE.equals(this.authType);
     }
     
     public String getAuthType() {

-- 
To stop receiving notification emails like this one, please contact
"commits@cxf.apache.org" <co...@cxf.apache.org>.