2012-10-31 10:45:28 +00:00
|
|
|
|
From c6246783cf347652f70d95c0562dd411747e9d53 Mon Sep 17 00:00:00 2001
|
|
|
|
|
From: Kamil Dudka <kdudka@redhat.com>
|
|
|
|
|
Date: Wed, 31 Oct 2012 11:40:30 +0100
|
|
|
|
|
Subject: [PATCH] Fix character encoding of docs
|
|
|
|
|
|
|
|
|
|
..., which are of mixed encoding originally so a simple iconv can't
|
|
|
|
|
fix them.
|
|
|
|
|
---
|
2012-11-20 09:42:33 +00:00
|
|
|
|
CHANGES | 22 +++++++++++-----------
|
2012-05-25 07:17:42 +00:00
|
|
|
|
README | 2 +-
|
2012-11-20 09:42:33 +00:00
|
|
|
|
2 files changed, 12 insertions(+), 12 deletions(-)
|
2012-05-25 07:17:42 +00:00
|
|
|
|
|
|
|
|
|
diff --git a/CHANGES b/CHANGES
|
2012-10-31 10:45:28 +00:00
|
|
|
|
index 4568408..5fc1652 100644
|
2012-05-25 07:17:42 +00:00
|
|
|
|
--- a/CHANGES
|
|
|
|
|
+++ b/CHANGES
|
2012-11-20 14:44:19 +00:00
|
|
|
|
@@ -198,7 +198,7 @@ Daniel Stenberg (12 Nov 2012)
|
2012-11-20 09:42:33 +00:00
|
|
|
|
|
2012-11-20 14:44:19 +00:00
|
|
|
|
- [Gabriel Sjoberg brought this change]
|
2012-11-20 09:42:33 +00:00
|
|
|
|
|
2012-11-20 14:44:19 +00:00
|
|
|
|
- Digst: Add microseconds into nounce calculation
|
|
|
|
|
+ Digest: Add microseconds into nounce calculation
|
2012-11-20 09:42:33 +00:00
|
|
|
|
|
2012-11-20 14:44:19 +00:00
|
|
|
|
When using only 1 second precision, curl doesn't create new cnonce
|
|
|
|
|
values quickly enough for all uses.
|
2012-11-20 09:42:33 +00:00
|
|
|
|
@@ -209,7 +209,7 @@ Daniel Stenberg (12 Nov 2012)
|
|
|
|
|
curl --digest -utest:test http://tomcat.test.com:8080/manager/list
|
|
|
|
|
|
|
|
|
|
This is because curl uses the same cnonce for several seconds, but
|
|
|
|
|
- doesn't increment the nonce counter. Tomcat correctly interprets
|
2012-11-20 14:44:19 +00:00
|
|
|
|
+ doesn't increment the nonce counter. Tomcat correctly interprets
|
2012-11-20 09:42:33 +00:00
|
|
|
|
this as a replay attack and rejects the request.
|
|
|
|
|
|
|
|
|
|
When microsecond-precision is available, this commit causes curl to
|
|
|
|
|
@@ -5460,7 +5460,7 @@ Daniel Stenberg (12 Dec 2011)
|
2012-05-25 07:17:42 +00:00
|
|
|
|
linking with a static openssl requires a set of more libs to be linked
|
|
|
|
|
on Windows.
|
|
|
|
|
|
|
|
|
|
- Thanks also to Steve Holme and Martin Storsj<73> for additional feedback.
|
|
|
|
|
+ Thanks also to Steve Holme and Martin Storsjö for additional feedback.
|
|
|
|
|
|
|
|
|
|
Bug: http://curl.haxx.se/mail/lib-2011-12/0063.html
|
|
|
|
|
Reported by: Ward Willats
|
|
|
|
|
diff --git a/README b/README
|
|
|
|
|
index 2ffacc3..cfd6760 100644
|
|
|
|
|
--- a/README
|
|
|
|
|
+++ b/README
|
|
|
|
|
@@ -45,5 +45,5 @@ GIT
|
|
|
|
|
NOTICE
|
|
|
|
|
|
|
|
|
|
Curl contains pieces of source code that is Copyright (c) 1998, 1999
|
|
|
|
|
- Kungliga Tekniska H<>gskolan. This notice is included here to comply with the
|
|
|
|
|
+ Kungliga Tekniska Högskolan. This notice is included here to comply with the
|
|
|
|
|
distribution terms.
|
2012-10-31 10:45:28 +00:00
|
|
|
|
--
|
|
|
|
|
1.7.1
|
|
|
|
|
|