- Sep 01, 2013
-
-
Guenter Knauf authored
-
Steve Holme authored
An enumerated type is mixed with another type
-
Steve Holme authored
warning: `code' might be used uninitialized in this function
-
- Aug 31, 2013
-
-
Daniel Stenberg authored
-
Steve Holme authored
-
Steve Holme authored
-
Guenter Knauf authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
Added BAD argument check to the following IMAP command handlers: APPEND, STORE, LIST, EXAMINE, STATUS and SEARCH
-
Steve Holme authored
LIST_imap() had a second level of indentation at 9 characters and not 8.
-
- Aug 30, 2013
-
-
Steve Holme authored
Corrected some IMAP variable names and whitespace issues.
-
Kyle L. Huff authored
-
Kyle L. Huff authored
-
Steve Holme authored
-
Daniel Stenberg authored
Added missing $
-
Steve Holme authored
-
- Aug 29, 2013
-
-
Daniel Stenberg authored
... when doing upload it would return the wrong values at times. This commit attempts to cleanup the mess. Bug: http://curl.haxx.se/mail/lib-2013-08/0109.html Reported-by: Mike Mio
-
Daniel Stenberg authored
When removing an already removed handle, avoid that to ruin the internals and just return OK instead.
-
Steve Holme authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
'struct monitor', introduced in 6cf8413e, already exists in an IRIX header file (sys/mon.h) which gets included via various standard headers by lib/easy.c cc-1101 cc: ERROR File = ../../curl/lib/easy.c, Line = 458 "monitor" has already been declared in the current scope. Reported-by: Tor Arntsen
-
Steve Holme authored
-
- Aug 28, 2013
-
-
Steve Holme authored
Corrected the call to logmsg() in the IMAP SEARCH handler from commit 4ae7b7ea as it should have been outputting the what argument and not the test number.
-
Daniel Stenberg authored
-
Steve Holme authored
-
Steve Holme authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Steve Holme authored
-
- Aug 27, 2013
-
-
Daniel Stenberg authored
When we introduced curl_easy_perform_ev, this got a slightly modified call trace. Without this, test 165 causes a false positive valgrind error.
-
Daniel Stenberg authored
Without this, test 165 triggers a valgrind error when ran with curl_easy_perform_ev
-
Daniel Stenberg authored
When waiting for a 100-continue response from the server, the Curl_readwrite() will refuse to run if called until the timeout has been reached. We timeout code in multi_socket() allows code to run slightly before the actual timeout time, so for test 154 it could lead to the function being executed but refused in Curl_readwrite() and then the application would just sit idling forever. This was detected with runtests.pl -e on test 154.
-
Steve Holme authored
-
Steve Holme authored
warning: implicit declaration of function 'checkpasswd'
-
Steve Holme authored
Moved the calls to checkpasswd() out of the getparameter() function which allows for any related arguments to be specified on the command line before or after --user (and --proxy-user). For example: --bearer doesn't need to be specified before --user to prevent curl from asking for an unnecessary password as is the case with commit e7dcc454.
-
- Aug 26, 2013
-
-
Steve Holme authored
-
Kyle L. Huff authored
Added the --bearer option to the help output
-
Kyle L. Huff authored
Added the ability to specify an XOAUTH2 bearer token [RFC6750] via the --bearer option. Example usage: curl --url "imaps://imap.gmail.com:993/INBOX/;UID=1" --ssl-reqd --bearer ya29.AHES6Z...OMfsHYI --user username@example.com
-