aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-04-19changelog: -J/--remote-header-name strips CRLFDaniel Stenberg
2010-04-19parse_filename: strip trailing CRs and LFsDaniel Stenberg
The feature that uses the file name given in a Content-disposition: header didn't properly skip trailing carriage returns and linefeed characters from the end of the file name when it was given without quotes.
2010-04-19Curl_HMAC_MD5: fix the array init to not warn with picky compilersDaniel Stenberg
2010-04-19Fix GnuTLS compilation problem in md5.cmonnerat
2010-04-19Fix compilation problem: declare Curl_HMAC_MD5 as extern in include file.monnerat
2010-04-19Merge branch 'master' of github.com:bagder/curlmonnerat
2010-04-19Implement SMTP authenticationmonnerat
2010-04-17parseconfig: Value stored to 'line' is never readDaniel Stenberg
Make the function call with (void) as we don't care about the return code.
2010-04-17parsedate: Value stored to 'found' is never readDaniel Stenberg
2010-04-17check_gzip_header: Value stored to 'data' is never readDaniel Stenberg
2010-04-16dprintf_formatf: Value stored to 'left' is never readDaniel Stenberg
2010-04-16curl_version: remove superfluous assignmentsDaniel Stenberg
2010-04-16FTP PORT: Value stored to 'rc' is never readDaniel Stenberg
2010-04-16Curl_setup_transfer: no longer returns anythingDaniel Stenberg
This function could only return CURLE_OK and by changing it to a void instead, we can simplify code all over.
2010-04-16PASV response: Value stored to 'rc' is never readDaniel Stenberg
2010-04-16Curl_perform: Value stored to 'res2' is never readDaniel Stenberg
2010-04-16sftp range: remove unnecessary check for NULL pointerDaniel Stenberg
2010-04-16ftp_range: remove unnecessary check for NULL pointerDaniel Stenberg
2010-04-16file_range: remove unnecessary check for NULL pointerDaniel Stenberg
2010-04-16SOCKS4: Value stored to 'rc' is never readDaniel Stenberg
2010-04-16FTP PASV: Value stored to 'rc' is never readDaniel Stenberg
2010-04-16ftp_range: Value stored to 'totalsize' is never readDaniel Stenberg
Simplified the code by removing a local variable completely.
2010-04-16SOCKS5: when name resolves fail return immediatelyDaniel Stenberg
This makes the code flow more obvious and reacts on the return code properly, even if the code acted the same way before.
2010-04-16POP3: when USER command fails, don't even try PASSDaniel Stenberg
2010-04-16tftp_rx: Value stored to 'sbytes' is never readDaniel Stenberg
2010-04-16file_range: Value stored to 'totalsize' is never readDaniel Stenberg
2010-04-16changelog: GnuTLS: SSL handshake phase is non-blockingDaniel Stenberg
2010-04-16GnuTLS: make the connection phase non-blockingJerome Vouillon
When multi interface is used, the SSL handshake is no longer blocking when GnuTLS is used.
2010-04-16krb5_auth: fix my previous change to compileDaniel Stenberg
2010-04-16OS400 version V5R2M0 not supported anymore by IBM: default target release ↵unknown
changed to V5R3M0.
2010-04-16changelog: GnuTLS fix, no reverse loopkups and fixed GSS detectionDaniel Stenberg
2010-04-16SSL_RECV: EOF is not an error hereDaniel Stenberg
The recent overhaul of the SSL recv function made this treat a zero returned from gnutls_record_recv() as an error, and this caused our HTTPS test cases to fail. We leave it to upper layer code to detect if an EOF is a problem or not.
2010-04-16configure: GSSAPI detection on ancient Linux distrosPaul Howarth
On some ancient distributions such as RHEL-3, <gssapi/gssapi_krb5.h> needs to be processed after <gssapi/gssapi.h>, but does not include it itself. This patch checks for <gssapi/gssapi.h> first and then includes it in the test for <gssapi/gssapi_krb5.h>, resolving the problem. Without the patch, <gssapi/gssapi_krb5.h> is "present but cannot be compiled".
2010-04-16resolvers: no more using AI_CANONNAMEDaniel Stenberg
No resolver anymore needs to use AI_CANONNAME and do reverse lookups. We should work hard to avoid having code that relies on it.
2010-04-16KRB5: use given host name instead of reverse lookup'ed nameDaniel Stenberg
This code would previously use dns_entry->addr->ai_canonname instead of the given host name, which caused us grief and problems since not all our resolver options do the reverse lookup and I would also guess that it caused problems with KRB5/GSS with virtual name-based hosts. Now the host name from the URL is used.
2010-04-15Remove redundant conditionalDan Fandrich
2010-04-15Eliminated an unlikely race condition in some tests.Dan Fandrich
Based on a patch from the FreeBSD ports by Peter Pentchev.
2010-04-15changelog: prevent needless reverse name lookupsDaniel Stenberg
2010-04-15Curl_ipv4_resolve_r: only set AI_CANONNAME when neededDaniel Stenberg
As reported in bug report #2987196, the code for ipv6 already did the setting of this bit correctly so we copied that logic into the Curl_ipv4_resolve_r() function as well. KRB code is the only code we know that might need the cannonical name so only resolve it for such requests!
2010-04-14IGNORE: files generated by maketgzDaniel Stenberg
2010-04-14bumped to start the journey towards 7.20.2Daniel Stenberg
2010-04-14added contributors from the 7.20.1 RELEASE-NOTESDaniel Stenberg
2010-04-14ignore files generated by 'maketgz'Daniel Stenberg
2010-04-147.20.1: 14 April 2010Daniel Stenberg
2010-04-13Use correct directory for c-ares git pullGuenter Knauf
Signed-off-by: Tor Arntsen <tor@spacetec.no>
2010-04-13fix compiler warning: variable might be clobbered by longjmp or vforkYang Tse
2010-04-13added last git commit output for c-ares too.Guenter Knauf
2010-04-13changed the git update block to take care of c-ares repo if detected.Guenter Knauf
2010-04-12updated timestamp of the script.Guenter Knauf
2010-04-12removed obsolete var in gitpull() functionGuenter Knauf
no need to create a var - lets just return the status var itself.