Return-Path: Delivered-To: apmail-hc-commits-archive@www.apache.org Received: (qmail 89369 invoked from network); 13 Aug 2009 19:25:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 13 Aug 2009 19:25:23 -0000 Received: (qmail 66237 invoked by uid 500); 13 Aug 2009 19:25:30 -0000 Delivered-To: apmail-hc-commits-archive@hc.apache.org Received: (qmail 66205 invoked by uid 500); 13 Aug 2009 19:25:30 -0000 Mailing-List: contact commits-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list commits@hc.apache.org Received: (qmail 66196 invoked by uid 99); 13 Aug 2009 19:25:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Aug 2009 19:25:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Aug 2009 19:25:28 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4D00423888FC; Thu, 13 Aug 2009 19:25:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r803998 - /httpcomponents/httpcore/branches/4.0.x/httpcore/src/main/java/org/apache/http/protocol/HTTP.java Date: Thu, 13 Aug 2009 19:25:08 -0000 To: commits@hc.apache.org From: olegk@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090813192508.4D00423888FC@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: olegk Date: Thu Aug 13 19:25:07 2009 New Revision: 803998 URL: http://svn.apache.org/viewvc?rev=803998&view=rev Log: HTTPCORE-202: Expect header value sent as '100-Continue' and not '100-continue' Modified: httpcomponents/httpcore/branches/4.0.x/httpcore/src/main/java/org/apache/http/protocol/HTTP.java Modified: httpcomponents/httpcore/branches/4.0.x/httpcore/src/main/java/org/apache/http/protocol/HTTP.java URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/branches/4.0.x/httpcore/src/main/java/org/apache/http/protocol/HTTP.java?rev=803998&r1=803997&r2=803998&view=diff ============================================================================== --- httpcomponents/httpcore/branches/4.0.x/httpcore/src/main/java/org/apache/http/protocol/HTTP.java (original) +++ httpcomponents/httpcore/branches/4.0.x/httpcore/src/main/java/org/apache/http/protocol/HTTP.java Thu Aug 13 19:25:07 2009 @@ -59,7 +59,7 @@ public static final String SERVER_HEADER = "Server"; /** HTTP expectations */ - public static final String EXPECT_CONTINUE = "100-Continue"; + public static final String EXPECT_CONTINUE = "100-continue"; /** HTTP connection control */ public static final String CONN_CLOSE = "Close";