Skip to content

Commit a07bc79

Browse files
committed
removed trailing whitespace
1 parent 2268657 commit a07bc79

File tree

141 files changed

+673
-669
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+673
-669
lines changed

CHANGES

+15-15
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Daniel Stenberg (13 Feb 2010)
1414
- Martin Hager reported and fixed a problem with a missing quote in libcurl.m4
1515

1616
(http://curl.haxx.se/bug/view.cgi?id=2951319)
17-
17+
1818
- Tom Donovan fixed the CURL_FORMAT_* defines when building with cmake.
1919

2020
(http://curl.haxx.se/bug/view.cgi?id=2951269)
@@ -244,7 +244,7 @@ Daniel Stenberg (26 Dec 2009)
244244
Daniel Stenberg (17 Dec 2009)
245245
- David Byron fixed Curl_ossl_cleanup to actually call ENGINE_cleanup when
246246
available.
247-
247+
248248
- Follow-up fix for the proxy fix I did for Jon Nelson's bug. It turned out I
249249
was a bit too quick and broke test case 1101 with that change. The order of
250250
some of the setups is sensitive. I now changed it slightly again to make
@@ -435,7 +435,7 @@ Daniel Stenberg (11 Nov 2009)
435435
in the DNS cache would linger too long if the request that added it was in
436436
use that long. He also provided the patch that now makes libcurl capable of
437437
still doing a request while the DNS hash entry may get timed out.
438-
438+
439439
- Christian Schmitz noticed that the progress meter/callback was not properly
440440
used during the FTP connection phase (after the actual TCP connect), while
441441
it of course should be. I also made the speed check get called correctly so
@@ -530,7 +530,7 @@ Daniel Stenberg (1 Oct 2009)
530530
him grief. This is a regression that was introduced in 7.19.1 and I find it
531531
strange it hasn't hit us harder, but I won't persue into figuring out
532532
exactly why.
533-
533+
534534
- Constantine Sapuntzakis: The current implementation will always set
535535
SO_SNDBUF to CURL_WRITE_SIZE even if the SO_SNDBUF starts out larger. The
536536
patch doesn't do a setsockopt if SO_SNDBUF is already greater than
@@ -564,7 +564,7 @@ Daniel Stenberg (25 Sep 2009)
564564
(http://curl.haxx.se/bug/view.cgi?id=2861587) identifying that libcurl used
565565
the OpenSSL function X509_load_crl_file() wrongly and failed if it would
566566
load a CRL file with more than one certificate within. This is now fixed.
567-
567+
568568
Daniel Stenberg (16 Sep 2009)
569569
- Sven Anders reported that we introduced a cert verfication flaw for OpenSSL-
570570
powered libcurl in 7.19.6. If there was a X509v3 Subject Alternative Name
@@ -787,7 +787,7 @@ Michal Marek (15 Jul 2009)
787787
Guenter Knauf (14 Jul 2009)
788788
- renamed generated config.h to curl_config.h to avoid any future clashes
789789
with config.h from other projects.
790-
790+
791791
Daniel Stenberg (9 Jul 2009)
792792
- Eric Wong introduced curlx_nonblock() that the curl tool now (re-)uses for
793793
setting a file descriptor non-blocking. Used by the functionality Eric
@@ -1239,7 +1239,7 @@ Yang Tse (2 Apr 2009)
12391239

12401240
Daniel Stenberg (1 Apr 2009)
12411241
- Andre Guibert de Bruet fixed a NULL pointer use in an infof() call if a
1242-
strdup() call failed.
1242+
strdup() call failed.
12431243

12441244
Daniel Fandrich (31 Mar 2009)
12451245
- Properly return an error code in curl_easy_recv (reported by Jim Freeman).
@@ -1248,7 +1248,7 @@ Daniel Stenberg (18 Mar 2009)
12481248
- Kamil Dudka brought a patch that enables 6 additional crypto algorithms when
12491249
NSS is used. These ciphers were added in NSS 3.4 and require to be enabled
12501250
explicitly.
1251-
1251+
12521252
Daniel Stenberg (13 Mar 2009)
12531253
- Use libssh2_version() to present the libssh2 version in case the libssh2
12541254
library is found to support it.
@@ -1268,8 +1268,8 @@ Yang Tse (11 Mar 2009)
12681268
reported by Pierre Brico.
12691269

12701270
Daniel Stenberg (9 Mar 2009)
1271-
- Frank Hempel found out a bug and provided the fix:
1272-
1271+
- Frank Hempel found out a bug and provided the fix:
1272+
12731273
curl_easy_duphandle did not necessarily duplicate the CURLOPT_COOKIEFILE
12741274
option. It only enabled the cookie engine in the destination handle if
12751275
data->cookies is not NULL (where data is the source handle). In case of a
@@ -1288,7 +1288,7 @@ Daniel Stenberg (9 Mar 2009)
12881288
checkouts who don't do cvs update with the -d option won't get the new dirs
12891289
and then will get funny outputs that can be a bit hard to understand and
12901290
fix.
1291-
1291+
12921292
Daniel Stenberg (8 Mar 2009)
12931293
- Andre Guibert de Bruet found and fixed a code segment in ssluse.c where the
12941294
allocation of the memory BIO was not being properly checked.
@@ -1361,7 +1361,7 @@ Daniel Stenberg (25 Feb 2009)
13611361
just to avoid it to fail very early when libgcrypt dislikes the situation,
13621362
but that move was bad and the fix should rather be in libgcrypt or
13631363
elsewhere.
1364-
1364+
13651365
Daniel Stenberg (24 Feb 2009)
13661366
- Brian J. Murrell found out that Negotiate proxy authentication didn't work.
13671367
It happened because the code used the struct for server-based auth all the
@@ -1395,7 +1395,7 @@ Daniel Stenberg (20 Feb 2009)
13951395
necessary to get read in ftp_done().
13961396

13971397
Daniel Stenberg (19 Feb 2009)
1398-
- Patrik Thunstrom reported a problem and helped me repeat it. It turned out
1398+
- Patrik Thunstrom reported a problem and helped me repeat it. It turned out
13991399
libcurl did a superfluous 1000ms wait when doing SFTP downloads!
14001400

14011401
We read data with libssh2 while doing the "DO" operation for SFTP and then
@@ -1525,7 +1525,7 @@ Daniel Stenberg (26 Jan 2009)
15251525

15261526
- Alexey Borzov filed bug report #2535504
15271527
(http://curl.haxx.se/bug/view.cgi?id=2535504) pointing out that realms with
1528-
quoted quotation marks in HTTP Digest headers didn't work. I've now added
1528+
quoted quotation marks in HTTP Digest headers didn't work. I've now added
15291529
test case 1095 that verifies my fix.
15301530

15311531
- Craig A West brought CURLOPT_NOPROXY and the corresponding --noproxy option.
@@ -1676,7 +1676,7 @@ Daniel Stenberg (29 Dec 2008)
16761676
Daniel Stenberg (28 Dec 2008)
16771677
- Peter Korsgaard fixed building libcurl with "configure --with-ssl
16781678
--disable-verbose".
1679-
1679+
16801680
- Anthony Bryan fixed more language and spelling flaws in man pages.
16811681

16821682
Daniel Stenberg (22 Dec 2008)

0 commit comments

Comments
 (0)