- Nov 24, 2015
-
-
Daniel Stenberg authored
... to also mention the specific options used.
-
Daniel Stenberg authored
This reverts commit 64e959ff. Feedback-by: Dan Fandrich URL: http://curl.haxx.se/mail/lib-2015-11/0062.html
-
- Nov 23, 2015
-
-
Daniel Stenberg authored
Refer to _HEADERDATA not _WRITEDATA. Reported-by: Michał Piechowski
-
Daniel Stenberg authored
-
- Nov 22, 2015
-
-
Steve Holme authored
-
- Nov 21, 2015
-
-
Steve Holme authored
-
Steve Holme authored
smb.c:134:3: warning: conversion to 'short unsigned int' from 'int' may alter its value smb.c:146:42: warning: conversion to 'unsigned int' from 'long long unsigned int' may alter its value smb.c:146:65: warning: conversion to 'unsigned int' from 'long long unsigned int' may alter its value
-
Steve Holme authored
-
Steve Holme authored
Regression from commit 7a8e861a as highlighted in the msys autobuilds.
-
Steve Holme authored
pop3-multi.c:96:5: warning: implicit declaration of function 'memset' imap-multi.c:96:5: warning: implicit declaration of function 'memset' http2-download.c:226:5: warning: implicit declaration of function 'memset' http2-upload.c:290:5: warning: implicit declaration of function 'memset' http2-upload.c:290:5: warning: implicit declaration of function 'memset'
-
Steve Holme authored
test845 not present in tests/data/Makefile.inc
-
- Nov 20, 2015
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Moved some ideas from "next major" to just ordinary ideas since we can always add new things while keeping the old without doing a "next major".
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
- Nov 19, 2015
-
-
Daniel Shahaf authored
Add error-checking to 'cd' in a few cases where omitting the checks might result in an infinite loop. Closes #535
-
Patrick Monnerat authored
-
Patrick Monnerat authored
-
Patrick Monnerat authored
-
danielsh@apache.org authored
When an option's help string contains literal single quotes, those single quotes would be stripped from the option's description in the completion output (unless the zsh RC_QUOTES option were set while the completion function was being sourced, which is not the default). This patch makes the completion output contain single quotes where the --help output does. Closes #532
-
MaxGiting authored
Closes https://github.com/bagder/curl/pull/533
-
- Nov 17, 2015
-
-
Daniel Stenberg authored
The push headers are freed after the push callback has been invoked, meaning this code should only free the headers if the callback was never invoked and thus the headers weren't freed at that time. Reported-by: Davey Shafik
-
- Nov 16, 2015
-
-
Anders Bakken authored
Closes #528
-
Daniel Stenberg authored
... if there are more than one using the same name
-
Daniel Stenberg authored
-
- Nov 15, 2015
-
-
Daniel Stenberg authored
-
Steve Holme authored
-
Steve Holme authored
As POP3 final and continuation responses both begin with a + character, and both the finalcode and contcode variables in SASLprotoc are set as such, we cannot tell the difference between them when we are expecting an optional continuation from the server such as the following: + something else from the server +OK final response Disabled these tests until such a time we can tell the responses apart.
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
According to RFC7628 a failure message may be sent by the server in a base64 encoded JSON string as a continuation response. Currently only implemented for OAUTHBEARER and not XAUTH2.
-
Daniel Stenberg authored
-
- Nov 14, 2015
-
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
OAUTHBEARER is now the official "registered" SASL mechanism name for OAuth 2.0. However, we don't want to drop support for XOAUTH2 as some servers won't support the new mechanism yet.
-
- Nov 13, 2015
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
CURLOPT_RESOLVE and CURLOPT_PROXYHEADER were missing Also sorted the list.
-
Daniel Stenberg authored
... and sorted curl_is_cb_data_option alphabetically
-
Sebastian Pohlschmidt authored
Curl_ossl_init calls OPENSSL_load_builtin_modules() but Curl_ossl_cleanup doesn't make a call to free these modules. Bug: https://github.com/bagder/curl/issues/526
-