#
8bb71d5f |
| 31-Aug-2024 |
Daniel Stenberg |
curl.h: make CURLOPT_WRITEINFO and CURLOPT_CLOSEPOLICY compile The symbols have not been in use for 17+ years and they did not do anything for several years before that, but apparently t
curl.h: make CURLOPT_WRITEINFO and CURLOPT_CLOSEPOLICY compile The symbols have not been in use for 17+ years and they did not do anything for several years before that, but apparently there are still code using them. Follow-up to 3b057d4b7a7 Fixes #14747 Reported-by: Kai Pastor Closes #14748
show more ...
|
#
8d67c61c |
| 28-Feb-2024 |
Daniel Gustafsson |
curldown: Fix email address in Copyright The curldown conversion accidentally replaced daniel@haxx.se with just daniel.se. This reverts back to the proper email address in the curld
curldown: Fix email address in Copyright The curldown conversion accidentally replaced daniel@haxx.se with just daniel.se. This reverts back to the proper email address in the curldown docs as well as in a few other stray places where it was incorrect (while unrelated to curldown). Reviewed-by: Daniel Stenberg <daniel@haxx.se> Closes: #12997
show more ...
|
#
4579626c |
| 11-Jan-2023 |
Daniel Gustafsson |
easyoptions: Fix header printing in generation script The optiontable.pl script prints the header comment when generating easyoptions.c, but it wasn't escaping all characters which jumbl
easyoptions: Fix header printing in generation script The optiontable.pl script prints the header comment when generating easyoptions.c, but it wasn't escaping all characters which jumbled the curl ascii logo. Fix by escaping. Cloes #10275
show more ...
|
#
602964ec |
| 03-Jan-2023 |
Jay Satiro |
scripts: set file mode +x on all perl and shell scripts - Set all scripts +x, ie 644 => 755. Prior to this change some scripts were not executable and therefore could not be cal
scripts: set file mode +x on all perl and shell scripts - Set all scripts +x, ie 644 => 755. Prior to this change some scripts were not executable and therefore could not be called directly. ~~~ git ls-files -s \*.{sh,pl,py} | grep -v 100755 ~~~ Closes https://github.com/curl/curl/pull/10219
show more ...
|
#
2bc1d775 |
| 02-Jan-2023 |
Daniel Stenberg |
copyright: update all copyright lines and remove year ranges - they are mostly pointless in all major jurisdictions - many big corporations and projects already don't use them - save
copyright: update all copyright lines and remove year ranges - they are mostly pointless in all major jurisdictions - many big corporations and projects already don't use them - saves us from pointless churn - git keeps history for us - the year range is kept in COPYING checksrc is updated to allow non-year using copyright statements Closes #10205
show more ...
|
#
ea557cfa |
| 28-Nov-2022 |
Daniel Stenberg |
lib/optiontable.pl: adapt to CURLOPTDEPRECATED() Follow-up from 6967571bf20624bc Reported-by: Gisle Vanem Fixes #9992 Closes #9993
|
#
dfe5a302 |
| 18-Jul-2022 |
Daniel Stenberg |
easyoptions: fix icc warning easyoptions.c(360): error #188: enumerated type mixed with another type Ref: #9156 Reported-by: Matthew Thompson Closes #9176
|
#
ad9bc597 |
| 17-May-2022 |
max.mehl |
copyright: make repository REUSE compliant Add licensing and copyright information for all files in this repository. This either happens in the file itself as a comment header or in the
copyright: make repository REUSE compliant Add licensing and copyright information for all files in this repository. This either happens in the file itself as a comment header or in the file `.reuse/dep5`. This commit also adds a Github workflow to check pull requests and adapts copyright.pl to the changes. Closes #8869
show more ...
|
#
f53b8931 |
| 29-Sep-2021 |
Daniel Stenberg |
easyoptions: add the two new PRE* options Follow-up to a517378de58358a Also fix optiontable.pl to do the correct remainder on the entry. Reported-by: Gisle Vanem Bug: h
easyoptions: add the two new PRE* options Follow-up to a517378de58358a Also fix optiontable.pl to do the correct remainder on the entry. Reported-by: Gisle Vanem Bug: https://github.com/curl/curl/commit/a517378de58358a85b7cfe9efecb56051268f629#commitcomment-57224830 Closes #7791
show more ...
|
#
d9b2d1d9 |
| 08-Sep-2021 |
Daniel Stenberg |
copyrights: update copyright year ranges
|
#
5458e6bd |
| 21-Aug-2021 |
a1346054 <36859588+a1346054@users.noreply.github.com> |
scripts: invoke interpreters through /usr/bin/env Closes #7602
|
Revision tags: curl-7_76_1, curl-7_76_0, curl-7_75_0, curl-7_74_0 |
|
#
4d2f8006 |
| 04-Nov-2020 |
Daniel Stenberg |
curl.se: new home Closes #6172
|
Revision tags: curl-7_73_0 |
|
#
17fcdf6a |
| 07-Sep-2020 |
Daniel Stenberg |
lib: fix -Wassign-enum warnings configure --enable-debug now enables -Wassign-enum with clang, identifying several enum "abuses" also fixed. Reported-by: Gisle Vanem Bug: ht
lib: fix -Wassign-enum warnings configure --enable-debug now enables -Wassign-enum with clang, identifying several enum "abuses" also fixed. Reported-by: Gisle Vanem Bug: https://github.com/curl/curl/commit/879007f8118771f4896334731aaca5850a154675#commitcomment-42087553 Closes #5929
show more ...
|
#
e250b568 |
| 01-Sep-2020 |
Daniel Stenberg |
optiontable: use DEBUGBUILD Follow-up to commit 6e18568ba38 (#5877)
|
Revision tags: tiny-curl-7_72_0 |
|
#
6ebe63fa |
| 26-Aug-2020 |
Daniel Stenberg |
options: API for meta-data about easy options const struct curl_easyoption *curl_easy_option_by_name(const char *name); const struct curl_easyoption *curl_easy_option_by_id (CURLo
options: API for meta-data about easy options const struct curl_easyoption *curl_easy_option_by_name(const char *name); const struct curl_easyoption *curl_easy_option_by_id (CURLoption id); const struct curl_easyoption * curl_easy_option_next(const struct curl_easyoption *prev); The purpose is to provide detailed enough information to allow for example libcurl bindings to get option information at run-time about what easy options that exist and what arguments they expect. Assisted-by: Jeroen Ooms Closes #5365
show more ...
|