Age | Commit message (Collapse) | Author |
|
|
|
These were missed in commit c468c27b.
|
|
With warning level 4, MSVC warns about assignments within conditional
expressions. Change the while loop to a do-while loop to fix this. This
change is also consistent with CODE_STYLE.md.
|
|
... they're already frowned upon in our source code style guide, this
now enforces the rule harder.
|
|
|
|
... checksrc of all test code is pending.
|
|
|
|
MSYS would otherwise turn a /-style path into a C:\-style path.
|
|
Bug: https://github.com/bagder/curl/pull/144
|
|
|
|
... or any other systems lacking a native snprintf
|
|
|
|
lib1515.c:38:26 warning: unused parameter 'curl'
lib1515.c:38:81 warning: unused parameter 'ptr'
lib1515.c:38:5 warning: no previous prototype for 'debug_callback'
lib1515.c:46:5 warning: no previous prototype for 'do_one_request'
lib1515.c:120:3 warning: ISO C90 forbids mixed declarations and code
As well as some code policing such as white space and braces.
|
|
Test-case 1515 reproduces bug #1303, where libcurl
would incorrectly prune DNS entries added via
CURLOPT_RESOLVE after the DNS_CACHE_TIMEOUT had
expired.
|