Steve Holme [Sun, 22 Apr 2012 17:59:07 +0000 (18:59 +0100)]
sspi - Small code tidy up
Steve Holme [Sun, 22 Apr 2012 17:49:27 +0000 (18:49 +0100)]
sspi: Added version information
Added version information for Windows SSPI to curl's main version
string and removed SSPI from the features string.
Daniel Stenberg [Fri, 20 Apr 2012 18:40:55 +0000 (20:40 +0200)]
HTTP: empty chunked POST ended up in two zero size chunks
When doing a chunked-encoded POST with -d (CURLOPT_POSTFIELDS) and the
size of the POST was zero length, it made libcurl first send a zero
chunk and then the terminating one. This could confuse a receiver and it
should rather just send the terminating chunk as it does with this fix.
Test case 1333 is added to verify.
Bug: http://curl.haxx.se/mail/archive-2012-04/0060.html
Reported by: Arnaud Compan
Guenter Knauf [Fri, 20 Apr 2012 11:33:54 +0000 (13:33 +0200)]
Updated dependency lib versions.
Daniel Stenberg [Thu, 19 Apr 2012 21:31:50 +0000 (23:31 +0200)]
singleipconnect: return OK even when Curl_socket() fails
Commit
9109cdec11ee5a brought this regression (shipped since 7.24.0).
The singleipconnect() function must not return an error if Curl_socket()
returns an error. It should then simply return OK and pass a SOCKET_BAD
back simply because that is how the user of this function expects it to
work and something else is not fine.
Reported by: Blaise Potard
Bug: http://curl.haxx.se/bug/view.cgi?id=3516508
Yang Tse [Thu, 19 Apr 2012 14:31:11 +0000 (16:31 +0200)]
Take in account that CURLAUTH_* bitmasks are now 'unsigned long' - follow-up
MIPSPro compiler detected curl_easy_getinfo() related missing adjustments.
SunPro compiler detected curl tool --libcurl option related missing adjustments.
Yang Tse [Wed, 18 Apr 2012 22:35:44 +0000 (00:35 +0200)]
url.c: CURLOPT_HTTPAUTH and CURLOPT_PROXYAUTH fixes
Fail with CURLE_NOT_BUILT_IN when none of requested auth methods is supported.
Reject CURLAUTH_ONLY bit when given alone or with CURLAUTH_NONE.
Yang Tse [Wed, 18 Apr 2012 21:04:35 +0000 (23:04 +0200)]
Take in account that CURLAUTH_* bitmasks are now 'unsigned long'
Data type of internal vars holding CURLAUTH_* bitmasks changed from 'long' to
'unsigned long' for proper handling and operating.
Yang Tse [Wed, 18 Apr 2012 21:04:07 +0000 (23:04 +0200)]
curl.h: CURLAUTH_* bitmasks adjusted to become 'unsigned long' typed
Info: http://curl.haxx.se/mail/lib-2012-04/0170.html
Yang Tse [Wed, 18 Apr 2012 19:03:20 +0000 (21:03 +0200)]
Some explicit conversion to 'long' of curl_easy_setopt() third argument
Explicit conversion to 'long' of curl_easy_setopt() third argument for options
CURLOPT_HTTPAUTH and CURLOPT_PROXYAUTH given that this is how its bitmasks are
docummented to be used.
Yang Tse [Tue, 17 Apr 2012 10:42:14 +0000 (12:42 +0200)]
build adjustments: commit
9e24b9c7 follow-up
Daniel Stenberg [Mon, 16 Apr 2012 22:45:20 +0000 (00:45 +0200)]
-# progress meter: avoid superfluous updates and duplicate lines
By comparing if a different "progress point" is reached or not since the
previous update, the progress function callback for this now avoids many
superfluous screen updates. This has the nice side-effect that it fixes
a problem that causes a second progress meter line.
The second line output happened because when we use the -# progress
meter, we force a newline output after the transfer in the main loop in
curl, but when libcurl calls the progress callback from
curl_easy_cleanup() it would then output the progress display
again. Possibly the naive newline output is wrong but this optimization
was suitable anyway...
Reported by: Daniel Theron
Bug: http://curl.haxx.se/bug/view.cgi?id=3517418
Yang Tse [Mon, 16 Apr 2012 20:37:12 +0000 (22:37 +0200)]
nss.c: fix compiler warning
Yang Tse [Mon, 16 Apr 2012 00:49:50 +0000 (02:49 +0200)]
curl-compilers.m4: -Wno-pedantic-ms-format for Windows gcc 4.5 builds
When building a Windows target with gcc 4.5 or newer and strict compiler
warnings enabled use -Wno-pedantic-ms-format in addition to other flags.
Kamil Dudka [Mon, 16 Apr 2012 13:01:15 +0000 (15:01 +0200)]
tests/valgrind.pm: suppress memleaks of NSS_InitContext()
Bug: https://bugzilla.mozilla.org/show_bug.cgi?id=745224
Yang Tse [Sat, 14 Apr 2012 13:41:38 +0000 (15:41 +0200)]
setup_once.h: tighten requirements for stdbool.h header inclusion
Include stdbool.h only when it is available and configure is capable of
detecting a proper 'bool' data type when the header is included.
Compilation fix for old or unpatched versions of XL C compiler.
Report: http://curl.haxx.se/mail/archive-2012-04/0022.html
Yang Tse [Sat, 14 Apr 2012 13:12:30 +0000 (15:12 +0200)]
headers: require GCC 2.7 or newer in order to allow attribute GCC'isms usage
Usage in other code paths already protected and requiring even newer versions.
Jonathan Nieder [Sat, 14 Apr 2012 13:06:57 +0000 (15:06 +0200)]
headers: surround GCC attribute names with double underscores
This protects from attribute names being defined by third party's code.
Improvement: http://curl.haxx.se/mail/lib-2012-04/0127.html
Guenter Knauf [Fri, 13 Apr 2012 18:34:30 +0000 (20:34 +0200)]
Updated copyright year.
Yang Tse [Fri, 13 Apr 2012 17:33:45 +0000 (19:33 +0200)]
testcurl.pl: build example programs for Android cross-compiles
Yang Tse [Fri, 13 Apr 2012 16:26:42 +0000 (18:26 +0200)]
nss.c: fix compiler warning
Yang Tse [Fri, 13 Apr 2012 15:58:41 +0000 (17:58 +0200)]
examples: fix compiler warnings
Kamil Dudka [Wed, 11 Apr 2012 11:44:20 +0000 (13:44 +0200)]
nss: provide human-readable names for NSS errors
Kamil Dudka [Tue, 10 Apr 2012 13:42:34 +0000 (15:42 +0200)]
nss: use NSS_InitContext() to initialize NSS if available
NSS_InitContext() was introduced in NSS 3.12.5 and helps to prevent
collisions on NSS initialization/shutdown with other libraries.
Bug: https://bugzilla.redhat.com/738456
Kamil Dudka [Fri, 6 Apr 2012 14:05:25 +0000 (16:05 +0200)]
nss: unconditionally require PK11_CreateGenericObject()
This bumps the minimal supported version of NSS to 3.12.x.
Guenter Knauf [Fri, 13 Apr 2012 10:11:31 +0000 (12:11 +0200)]
Set batch mode to 755 to make Cygwin git pulls work.
Guenter Knauf [Fri, 13 Apr 2012 08:34:03 +0000 (10:34 +0200)]
Added section for Android configure cross-compile.
Guenter Knauf [Thu, 12 Apr 2012 23:24:34 +0000 (01:24 +0200)]
Added NetWare export.
Yang Tse [Thu, 12 Apr 2012 19:14:53 +0000 (21:14 +0200)]
testcurl.pl: build example programs for MinGW cross-compiles
Yang Tse [Thu, 12 Apr 2012 18:41:03 +0000 (20:41 +0200)]
tool_operate.c: fix compiler warning
Yang Tse [Thu, 12 Apr 2012 18:39:15 +0000 (20:39 +0200)]
url.c: fix compiler warning
Guenter Knauf [Thu, 12 Apr 2012 18:51:29 +0000 (20:51 +0200)]
Updated dependency lib versions (2nd try).
Guenter Knauf [Thu, 12 Apr 2012 18:44:50 +0000 (20:44 +0200)]
Updated dependency lib versions.
Yang Tse [Thu, 12 Apr 2012 17:28:46 +0000 (19:28 +0200)]
tool_formparse.c: rename a couple of vars to avoid declaration shadowing
Yang Tse [Thu, 12 Apr 2012 17:13:23 +0000 (19:13 +0200)]
OS400/initscript.sh: fix db2_name() module name generation
Allow repeatable file name length reduction on file names with underscore or
dash characters. This is done in order to better support libcurl's existing
source file names and allow OS/400 package to build out of the box again.
Yang Tse [Thu, 12 Apr 2012 15:11:17 +0000 (17:11 +0200)]
testcurl.pl: log more environment vars that modify configure and build behavior
Yang Tse [Thu, 12 Apr 2012 11:08:48 +0000 (13:08 +0200)]
configure: NATIVE_WINDOWS no longer defined in config files
Yang Tse [Wed, 11 Apr 2012 17:33:54 +0000 (19:33 +0200)]
build adjustments: CURL_HIDDEN_SYMBOLS no longer defined in config files
configure script now provides conditional definitions for Makefile.am
that result in CURL_HIDDEN_SYMBOLS being defined by resulting makefiles
when appropriate.
Additionally, configure script option for symbol hiding control is now
named --enable-symbol-hiding --disable-symbol-hiding. While still valid,
old option name --enable-hidden-symbols --disable-hidden-symbols will
be deprecated in some future release.
Yang Tse [Wed, 11 Apr 2012 17:28:40 +0000 (19:28 +0200)]
build adjustments: functionally revert commits
4d3fb91f and
bbfe1182
Undefining CURL_HIDDEN_SYMBOLS in source files isn't the proper fix.
Yang Tse [Tue, 10 Apr 2012 15:32:06 +0000 (17:32 +0200)]
test servers: build adjustment
Undefine CURL_HIDDEN_SYMBOLS libcurl private preprocessor macro that might
leak from lib/setup.h into source files where this should not be defined.
Yang Tse [Tue, 10 Apr 2012 15:29:37 +0000 (17:29 +0200)]
libtests: build adjustment
Undefine CURL_HIDDEN_SYMBOLS libcurl private preprocessor macro that might
leak from lib/setup.h into source files where this should not be defined.
Yang Tse [Tue, 10 Apr 2012 01:20:30 +0000 (03:20 +0200)]
curl tool: make setup.h first header included in tool_setup.h again
Yang Tse [Mon, 9 Apr 2012 19:39:03 +0000 (21:39 +0200)]
curl tool: use configuration files from lib directory - follow-up II
lib/config-win32.h no longer copied to src/config-win32.h
Yang Tse [Mon, 9 Apr 2012 19:24:16 +0000 (21:24 +0200)]
configure: Windows cross-compilation fixes
BUILDING_LIBCURL and CURL_STATICLIB are no longer defined in curl_config.h,
configure will generate appropriate conditionals so that mentioned symbols
get defined and used in Makefiles at compilation time
Yang Tse [Sun, 8 Apr 2012 11:50:18 +0000 (13:50 +0200)]
curl tool: make curl.h first header included in tool_setup.h
Yang Tse [Fri, 6 Apr 2012 22:31:24 +0000 (00:31 +0200)]
curl tool: use configuration files from lib directory - follow-up I
amigaos.[ch] now integrates nicely with any libcurl build
Yang Tse [Fri, 6 Apr 2012 21:35:15 +0000 (23:35 +0200)]
curl tool: use configuration files from lib directory
Configuration files such as curl_config.h and all config-*.h no longer exist
nor are generated/copied into 'src' directory, now these only exist in 'lib'
directory from where curl tool sources uses them.
Additionally old src/setup.h has been refactored into src/tool_setup.h which
now pulls lib/setup.h
The possibility of a makefile needing an include path adjustment exists.
Daniel Stenberg [Fri, 6 Apr 2012 13:10:59 +0000 (15:10 +0200)]
PolarSSL: correct return code for CRL matches
When a server certificate matches one in the given CRL file, the code
now returns CURLE_SSL_CACERT as test case 313 expects and verifies.
Daniel Stenberg [Fri, 6 Apr 2012 12:44:36 +0000 (14:44 +0200)]
PolarSSL: include version number in version string
Previously it would say PolarSSL only, now it says PolarSSL/1.1.0 in the
same style other libs and components do.
Daniel Stenberg [Thu, 5 Apr 2012 21:37:16 +0000 (23:37 +0200)]
test: added test 1332 that tests --post303
Daniel Stenberg [Thu, 5 Apr 2012 21:34:12 +0000 (23:34 +0200)]
curl: add --post303 to set the CURL_REDIR_POST_303 option
Andrei Cipu [Fri, 30 Mar 2012 07:40:04 +0000 (10:40 +0300)]
CURLOPT_POSTREDIR: also allow 303 to do POST on the redirected URL
As it turns out, some people do want that after all.
Daniel Stenberg [Thu, 5 Apr 2012 21:22:15 +0000 (23:22 +0200)]
test1331: cookies on a 407 response
Verify that cookies are sent back even after a 407 response has been
received
Dag Ekengren [Tue, 27 Mar 2012 12:10:32 +0000 (14:10 +0200)]
PolarSSL: add support for asynchronous connect
Tim Heckman [Wed, 4 Apr 2012 14:40:41 +0000 (10:40 -0400)]
Revert "access the CA source file using HTTPS"
This reverts commit f7e2ab6.
This change caused fetching of the certificates to become unreliable.
Bug: http://curl.haxx.se/mail/lib-2012-03/0238.html
Reported by: Tim Heckman
Andrei Cipu [Wed, 4 Apr 2012 12:35:24 +0000 (15:35 +0300)]
IPv6 cookie domain: get rid of the first bracket before the second.
Commit
97b66ebe was copying a smaller buffer, thus duplicating the last
character.
Daniel Stenberg [Wed, 4 Apr 2012 21:18:41 +0000 (23:18 +0200)]
MAIL-ETIQUETTE: Added "How to unsubscribe"
... as it seems to hard for some people
Yang Tse [Wed, 4 Apr 2012 15:30:12 +0000 (17:30 +0200)]
ftp.c: ftplistparser related OOM handling fix
Yang Tse [Wed, 4 Apr 2012 15:23:49 +0000 (17:23 +0200)]
smtp.c: fix compiler warnings
Yang Tse [Wed, 4 Apr 2012 15:22:46 +0000 (17:22 +0200)]
lib599.c: fix compiler warning
Daniel Stenberg [Tue, 3 Apr 2012 22:07:26 +0000 (00:07 +0200)]
runtests: yassl and polarssl are not openssl
Don't set the "has_openssl" variable if yassl or polarssl is found as
they will simply not work as 100% drop-in replacements for some of the
stuff the "OpenSSL" feature is used for.
I spotted this problem when doing test runs with PolarSSL builds.
Lijo Antony [Mon, 2 Apr 2012 22:45:25 +0000 (02:45 +0400)]
connect.c: return changed to CURLE_COULDNT_CONNECT when opensocket fails
Curl_socket returns CURLE_COULDNT_CONNECT when the opensocket callback
returns CURL_SOCKET_BAD. Previous return value CURLE_FAILED_INIT
conveys incorrect information to the user.
Steve Holme [Mon, 2 Apr 2012 22:24:00 +0000 (23:24 +0100)]
pop3: Reworked the command sending and handling
Reworked the command sending from two specific LIST and RETR command
functions into a single command based function as well as the two
associated response handlers into a generic command handler.
Dave Reisner [Sun, 4 Mar 2012 23:07:03 +0000 (23:07 +0000)]
curl tool: add filename_effective token for --write-out
By modifying the parameter list for ourWriteOut() and passing the
OutStruct that collects data in tool_operate, we get access to the
remote name that we're writing to. Shell scripters should find this
useful when used in conjuntion with the --remote-header-name option.
Steve Holme [Sun, 1 Apr 2012 20:09:38 +0000 (21:09 +0100)]
smtp.c: Code policing and tidy up
Armel Asselin [Sun, 1 Apr 2012 18:22:37 +0000 (20:22 +0200)]
SSH: public key can now be an empty string
If an empty string is passed to CURLOPT_SSH_PUBLIC_KEYFILE, libcurl will
pass no public key to libssh2 which then tries to compute it from the
private key. This is known to work when libssh2 1.4.0+ is linked against
OpenSSL.
Tatsuhiro Tsujikawa [Sun, 1 Apr 2012 12:58:17 +0000 (21:58 +0900)]
OpenSSL: Made cert hostname check conform to RFC 6125
This change replaces RFC 2818 based hostname check in OpenSSL build with
RFC 6125 [1] based one.
The hostname check in RFC 2818 is ambiguous and each project implements
it in the their own way and they are slightly different. I check curl,
gnutls, Firefox and Chrome and they are all different.
I don't think there is a bug in current implementation of hostname
check. But it is not as strict as the modern browsers do. Currently,
curl allows multiple wildcard character '*' and it matches '.'. (as
described in the comment in ssluse.c).
Firefox implementation is also based on RFC 2818 but it only allows at
most one wildcard character and it must be in the left-most label in the
pattern and the wildcard must not be followed by any character in the
label.[2] Chromium implementation is based on RFC 6125 as my patch does.
Firefox and Chromium both require wildcard in the left-most label in the
presented identifier.
This patch is more strict than the current implementation, so there may
be some cases where old curl works but new one does not. But at the same
time I think it is good practice to follow the modern browsers do and
follow the newer RFC.
[1] http://tools.ietf.org/html/rfc6125#section-6.4.3
[2] https://bugzilla.mozilla.org/show_bug.cgi?id=159483
Daniel Stenberg [Fri, 23 Mar 2012 22:42:37 +0000 (23:42 +0100)]
HTTP: reset expected DL/UL sizes on redirects
With FOLLOWLOCATION enabled. When a 3xx page is downloaded and the
download size was known (like with a Content-Length header), but the
subsequent URL (transfered after the 3xx page) was chunked encoded, then
the previous "known download size" would linger and cause the progress
meter to get incorrect information, ie the former value would remain
being sent in. This could easily result in downloads that were WAY
larger than "expected" and would cause >100% outputs with the curl
command line tool.
Test case 599 was created and it was used to repeat the bug and then
verify the fix.
Bug: http://curl.haxx.se/bug/view.cgi?id=3510057
Reported by: Michael Wallner
Gökhan Şengün [Fri, 30 Mar 2012 20:50:56 +0000 (23:50 +0300)]
smtp: Add support for DIGEST-MD5 authentication
Gökhan Şengün [Fri, 30 Mar 2012 20:19:38 +0000 (23:19 +0300)]
smtp: Cody tidy up of md5 digest length
Replaced the hard coded md5 digest length (16) with a preprocessor
constant
Gökhan Şengün [Fri, 30 Mar 2012 20:09:47 +0000 (23:09 +0300)]
md5: Add support for calculating the md5 sum of buffers incrementally
It is now possible to calculate the md5 sum as the stream of buffers
becomes known where as previously it was only possible to calculate the
md5 sum of a pre-prepared buffer.
Daniel Stenberg [Sat, 31 Mar 2012 17:48:15 +0000 (19:48 +0200)]
Revert "mk-ca-bundle.pl: use LWP::UserAgent for https"
This reverts commit
9f0e1689f169b83b8fbdae23e0024cc57dcbc770.
It turned out that "improvement" instead made the fetching of the
certificates unreliable
Bug: http://curl.haxx.se/mail/lib-2012-03/0238.html
Reported by: Tim Heckman
Steve Holme [Sat, 31 Mar 2012 17:47:58 +0000 (18:47 +0100)]
DOCS: Added information regarding POP3 commands to CURLOPT_CUSTOMREQUEST
Steve Holme [Sat, 31 Mar 2012 17:46:22 +0000 (18:46 +0100)]
pop3: Added support for additional pop3 commands
This feature allows the user to specify and use additional POP3
commands such as UIDL and DELE via libcurl's CURLOPT_CUSTOMREQUEST or
curl's -X command line option.
tetetest tetetest [Fri, 30 Mar 2012 16:59:47 +0000 (18:59 +0200)]
CMakeLists.txt: fix Windows LDAP/LDAPS option handling
bug: http://curl.haxx.se/mail/lib-2012-03/0278.html
tetetest tetetest [Thu, 29 Mar 2012 19:10:30 +0000 (21:10 +0200)]
CMakeLists.txt: fix MS Visual Studio x64 unsigned long long literal suffix
bug: http://curl.haxx.se/mail/lib-2012-03/0255.html
Steve Holme [Wed, 28 Mar 2012 21:23:17 +0000 (22:23 +0100)]
TODO: Corrected POP3 section heading
Yang Tse [Wed, 28 Mar 2012 16:46:08 +0000 (18:46 +0200)]
curl-functions.m4: update detection logic of getaddrinfo() thread-safeness
Take in account that h_errno might be a modifiable lvalue not defined as
a C preprocessor macro
Steve Holme [Tue, 27 Mar 2012 20:58:59 +0000 (21:58 +0100)]
TODO: Added SMTP and POP3 specific features
Olaf Flebbe [Tue, 27 Mar 2012 07:32:19 +0000 (09:32 +0200)]
tool_cb_dbg.c: fix tool_cb_dbg() to behave properly even for size 0
curl segfault in debug callback triggered with CURLINFO_HEADER_OUT and size 0
bug: http://curl.haxx.se/bug/view.cgi?id=3511794
Yang Tse [Mon, 26 Mar 2012 21:52:15 +0000 (23:52 +0200)]
test #1405: support HTTP disabled builds
Steve Holme [Mon, 26 Mar 2012 20:08:16 +0000 (21:08 +0100)]
test #809: Updated error code to match recent pop3 changes
Yang Tse [Sun, 25 Mar 2012 16:10:09 +0000 (18:10 +0200)]
ssh.c: code cleanup, Curl_safefree() already nullifies pointer
Yang Tse [Sun, 25 Mar 2012 15:51:59 +0000 (17:51 +0200)]
fix some compiler warnings
Steve Holme [Sun, 25 Mar 2012 11:47:39 +0000 (12:47 +0100)]
pop3.c: Corrected problem with state() introduced in
01690ed2bce5
Steve Holme [Sun, 25 Mar 2012 10:28:59 +0000 (11:28 +0100)]
pop.c: Small code tidy up
Steve Holme [Sun, 25 Mar 2012 10:21:59 +0000 (11:21 +0100)]
pop3: Removed the need for the single message LIST command handler
Simplified the code to remove the need for a separate "LIST <msg id>"
command handler and state machine and instead use the LIST command
handler for both operations.
Steve Holme [Sat, 24 Mar 2012 12:28:11 +0000 (12:28 +0000)]
pop3.c: Code policing and tidy up
Corrected character and line spacing and re-ordered list and retr
functions based on the order of their state machines.
Steve Holme [Sat, 24 Mar 2012 11:55:34 +0000 (11:55 +0000)]
email: Moved server greeting responses into separate functions
Moved the server greeting response handling code from the statemach_act
functions to separate response functions. This makes the code simpler
to follow and provides consistency with the other responses that are
handled here.
Steve Holme [Sat, 24 Mar 2012 00:09:38 +0000 (00:09 +0000)]
pop3.c: Fixed body data being written when CURLOPT_NOBODY is specified
Body data would be forwarded to the client application in both the RETR
and LIST commands even if CURLOPT_NOBODY was specified.
Rodrigo Silva (MestreLion) [Fri, 23 Mar 2012 13:01:19 +0000 (10:01 -0300)]
docs: clarify -z/--time-cond with filename (mention mtime)
Original wording could lead users in thinking it tries to
somehow parse the filename for a date expression (like
news_2012_03_05.html). It never mentions that it actually
reads the mtime of the file in filesystem.
Yang Tse [Fri, 23 Mar 2012 17:31:29 +0000 (18:31 +0100)]
tests #1316 #1319 #1320 #1321: add missing keywords
Yang Tse [Fri, 23 Mar 2012 17:15:34 +0000 (18:15 +0100)]
test #598: add missing keywords
Yang Tse [Fri, 23 Mar 2012 15:59:03 +0000 (16:59 +0100)]
version: start working on 7.25.1-DEV
Benjamin Johnson [Thu, 22 Mar 2012 22:33:33 +0000 (23:33 +0100)]
configure: check for gethostbyname in the watt lib
This allows building of libcurl on DOS using DJGPP 2.04 and Watt-32
sockets. I know there's already Makefile.djgpp, but I find this more
convenient since I'm used to using the ./configure script from other
platforms
Daniel Stenberg [Thu, 22 Mar 2012 21:22:08 +0000 (22:22 +0100)]
THANKS: 8 new contributors from 7.25.0
Daniel Stenberg [Thu, 22 Mar 2012 18:40:25 +0000 (19:40 +0100)]
RELEASE-NOTES: synced with
b8b2cf612b2
Yang Tse [Thu, 22 Mar 2012 17:32:19 +0000 (18:32 +0100)]
tests #1400 #1401: add missing keywords
Yang Tse [Thu, 22 Mar 2012 16:27:14 +0000 (17:27 +0100)]
http_proxy.h: fix builds with proxy or http disabled
Yang Tse [Thu, 22 Mar 2012 14:53:03 +0000 (15:53 +0100)]
parsedate.c: fix a numeric overflow