History log of /curl/ (Results 8351 – 8375 of 33765)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
67f3f6cf14-Mar-2020 Jay Satiro

Makefile.m32: Improve windres parameter compatibility

- s/COFF/coff/

Some versions of windres do not recognize uppercase COFF as a valid
way to specify the COFF output format.

Makefile.m32: Improve windres parameter compatibility

- s/COFF/coff/

Some versions of windres do not recognize uppercase COFF as a valid
way to specify the COFF output format.

Reported-by: Steven Penny

Fixes https://github.com/curl/curl/issues/5099
Closes https://github.com/curl/curl/pull/5101

show more ...

3bfda07014-Mar-2020 Jay Satiro

easy: Fix curl_easy_duphandle for builds missing IPv6 that use c-ares

- Ignore CURLE_NOT_BUILT_IN errors returned by c-ares functions in
curl_easy_duphandle.

Prior to this cha

easy: Fix curl_easy_duphandle for builds missing IPv6 that use c-ares

- Ignore CURLE_NOT_BUILT_IN errors returned by c-ares functions in
curl_easy_duphandle.

Prior to this change if c-ares was used as the resolver backend and
either it was too old or libcurl was built without IPv6 support then
some of our resolver functions could return CURLE_NOT_BUILT_IN to
curl_easy_duphandle causing it to fail.

Caused by c8f086b which shipped in 7.69.1.

Reported-by: Karl Chen

Fixes https://github.com/curl/curl/issues/5097
Closes https://github.com/curl/curl/pull/5100

show more ...

0845ecbb09-Mar-2020 Daniel Stenberg

docs: add warnings about FILE: URLs on Windows

- --url man page section
- libcurl-security.3 gets the full text
- CURLOPT_URL.3

Reported-by: Tim Sedlmeyer

fe8ba51210-Mar-2020 Daniel Stenberg

server/getpart: make the "XML-parser" stricter

When extracting a <section> <part> and there's no </part> before
</section>, this now outputs an error and returns a wrong string to
ma

server/getpart: make the "XML-parser" stricter

When extracting a <section> <part> and there's no </part> before
</section>, this now outputs an error and returns a wrong string to
make users spot the mistake.

Ref: #5070
Closes #5071

show more ...

a7e24c7312-Mar-2020 Marc Hoersken

impacket: some more Python 3 code compatibility updates

This makes smbserver load on Python 3, but still not work completely.

ba0e6fbd12-Mar-2020 Marc Hoersken

smbserver: pin Python version to 2 since we are not yet 3 compatible

Even though the existing code can be fixed to run on Python 3, the
tests will fail due to the Unicode transition the

smbserver: pin Python version to 2 since we are not yet 3 compatible

Even though the existing code can be fixed to run on Python 3, the
tests will fail due to the Unicode transition the protocol is invalid.

Follow up to ee63837
Closes #5085

show more ...

af07875c12-Mar-2020 Viktor Szakats

cleanup: fix some text/comment typos

Closes #5087

d5c01d7712-Mar-2020 Marc Hoersken

smbserver: fix Python version specific ConfigParser import

Follow up to ee63837 and 8c7c4a6
Fixes #5077

4674269611-Mar-2020 Daniel Stenberg

RELEASE-NOTES: synced

bumped to 7.69.2

c0fe3b3210-Mar-2020 Dan Fandrich

tests/data: Fix some XML formatting issues in test cases

This allows these test files to pass xmllint.

0cc66ff510-Mar-2020 Muhammad Herdiansyah

Makefile: run the cd commands in a subshell

In bmake, if the directory is changed (with cd or anything else), bmake
won't return to the "root directory" on the next command (in the same

Makefile: run the cd commands in a subshell

In bmake, if the directory is changed (with cd or anything else), bmake
won't return to the "root directory" on the next command (in the same
Makefile rule). This commit runs the cd command in a subshell so it
would work in bmake.

Closes #5073

show more ...

27ea8fc208-Mar-2020 Daniel Stenberg

configure: convert -I to -isystem as a last step

As all the -I uses in CFLAGS at that point are for system headers and
third party libraries this helps us remove/ignore warnings on those

configure: convert -I to -isystem as a last step

As all the -I uses in CFLAGS at that point are for system headers and
third party libraries this helps us remove/ignore warnings on those!

Closes #5060

show more ...

77b62fe610-Mar-2020 Daniel Stenberg

configure: fix -pedantic-errors for GCC 5 and later

If --enable-werror is used.

Follow-up to d5c0351055d5709da which added it too early in the configure
script before $compiler_

configure: fix -pedantic-errors for GCC 5 and later

If --enable-werror is used.

Follow-up to d5c0351055d5709da which added it too early in the configure
script before $compiler_num was set correctly and thus this option was
never used.

Reported-by: Stepan Efremov
Fixes #5067
Closes #5068

show more ...

f0f3952f10-Mar-2020 Daniel Stenberg

configure: document 'compiler_num' for gcc

The CURL_CHECK_COMPILER_GNU_C function sets the number to MAJOR*100 +
MINOR and ignores the patch version, and since gcc version 7 it only

configure: document 'compiler_num' for gcc

The CURL_CHECK_COMPILER_GNU_C function sets the number to MAJOR*100 +
MINOR and ignores the patch version, and since gcc version 7 it only
sets it to MAJOR*100.

Reported-by: Stepan Efremov
Ref: #5067
Closes #5069

show more ...

b81e0b0709-Mar-2020 Daniel Stenberg

RELEASE-NOTES: 7.69.1

2d47224e10-Mar-2020 Daniel Stenberg

THANKS: from the 7.69.1 release

fb61344210-Mar-2020 Marc Hoersken

test1129: fix invalid case of closing XML-tag and Content-Length

Fixes #5070
Closes #5072

f11b2cb610-Mar-2020 Marc Hoersken

tests/data: fix static ip instead of dynamic value being used

Follow up to 94ced8e

94ced8e310-Mar-2020 Marc Hoersken

tests/data: fix static ip:port instead of dynamic values being used

Closes #5065

26c5ba0e10-Mar-2020 Marc Hoersken

tests/server: fix missing use of exe_ext helper function

Follow up to 9819984 and 3dce984
Reviewed-By: Daniel Stenberg
Closes #5064

4d43d06109-Mar-2020 Marc Hoersken

runtests: log minimal and maximal used port numbers

e96fe70c08-Mar-2020 Jim Fuller

sftp: fix segfault regression introduced by #4747

This fix adds a defensive check for the case where the char *name in
struct libssh2_knownhost is NULL

Fixes #5041
Closes #5

sftp: fix segfault regression introduced by #4747

This fix adds a defensive check for the case where the char *name in
struct libssh2_knownhost is NULL

Fixes #5041
Closes #5062

show more ...

464d944b08-Mar-2020 Daniel Stenberg

RELEASE-NOTES: synced

f0e8160508-Mar-2020 Daniel Stenberg

socks4: fix host resolve regression

1. The socks4 state machine was broken in the host resolving phase

2. The code now insists on IPv4-only when using SOCKS4 as the protocol
onl

socks4: fix host resolve regression

1. The socks4 state machine was broken in the host resolving phase

2. The code now insists on IPv4-only when using SOCKS4 as the protocol
only supports that.

Regression from #4907 and 4a4b63d, shipped in 7.69.0

Reported-by: amishmm on github
Bug: https://github.com/curl/curl/issues/5053#issuecomment-596191594
Closes #5061

show more ...

7733667128-Jan-2020 Patrick Monnerat

silly web server: silent a compilation warning

Recent gcc warns when byte count of strncpy() equals the destination
buffer size. Since the destination buffer is previously cleared and

silly web server: silent a compilation warning

Recent gcc warns when byte count of strncpy() equals the destination
buffer size. Since the destination buffer is previously cleared and
the source string is always shorter, reducing the byte count by one
silents the warning without affecting the result.

Closes #5059

show more ...

1...<<331332333334335336337338339340>>...1351