Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id ACC4717669 for ; Thu, 30 Apr 2015 09:39:27 +0000 (UTC) Received: (qmail 10657 invoked by uid 500); 30 Apr 2015 09:39:27 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 10601 invoked by uid 500); 30 Apr 2015 09:39:27 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 10592 invoked by uid 99); 30 Apr 2015 09:39:27 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Apr 2015 09:39:27 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 475E3E0061; Thu, 30 Apr 2015 09:39:27 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sergeyb@apache.org To: commits@cxf.apache.org Message-Id: <0e9bb0c6e9e549759dde9e0449fc5589@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: [CXF-6379] Fixing a typo, thanks to Carsten Lohmann Date: Thu, 30 Apr 2015 09:39:27 +0000 (UTC) Repository: cxf Updated Branches: refs/heads/master b9e4fcf44 -> a5d111e31 [CXF-6379] Fixing a typo, thanks to Carsten Lohmann Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/a5d111e3 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/a5d111e3 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/a5d111e3 Branch: refs/heads/master Commit: a5d111e31f72b1a2bf05af59c2f61e79965fb9dc Parents: b9e4fcf Author: Sergey Beryozkin Authored: Thu Apr 30 10:39:12 2015 +0100 Committer: Sergey Beryozkin Committed: Thu Apr 30 10:39:12 2015 +0100 ---------------------------------------------------------------------- .../http/src/main/java/org/apache/cxf/transport/http/Headers.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/a5d111e3/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Headers.java ---------------------------------------------------------------------- diff --git a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Headers.java b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Headers.java index 5507f40..6e587a8 100644 --- a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Headers.java +++ b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Headers.java @@ -350,7 +350,7 @@ public class Headers { } if (addHeaders || HttpHeaderHelper.COOKIE.equalsIgnoreCase(header)) { for (String s : headerList) { - connection.addRequestProperty(HttpHeaderHelper.COOKIE, s); + connection.addRequestProperty(header, s); } } else { StringBuilder b = new StringBuilder();