You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2017/05/09 20:04:04 UTC

[16/22] httpcomponents-core git commit: HTTPCORE-202: Expect header value sent as '100-Continue' and not '100-continue'

HTTPCORE-202: Expect header value sent as '100-Continue' and not '100-continue'

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpcore/branches/4.0.x@803998 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/commit/04d6ff75
Tree: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/tree/04d6ff75
Diff: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/diff/04d6ff75

Branch: refs/heads/4.0.x
Commit: 04d6ff7548c54c650e8ccbd7d973aea611fc1f83
Parents: 0d2b1ad
Author: Oleg Kalnichevski <ol...@apache.org>
Authored: Thu Aug 13 19:25:07 2009 +0000
Committer: Oleg Kalnichevski <ol...@apache.org>
Committed: Thu Aug 13 19:25:07 2009 +0000

----------------------------------------------------------------------
 httpcore/src/main/java/org/apache/http/protocol/HTTP.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/04d6ff75/httpcore/src/main/java/org/apache/http/protocol/HTTP.java
----------------------------------------------------------------------
diff --git a/httpcore/src/main/java/org/apache/http/protocol/HTTP.java b/httpcore/src/main/java/org/apache/http/protocol/HTTP.java
index d745244..8e467a5 100644
--- a/httpcore/src/main/java/org/apache/http/protocol/HTTP.java
+++ b/httpcore/src/main/java/org/apache/http/protocol/HTTP.java
@@ -59,7 +59,7 @@ public final class HTTP {
     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";