Loading CHANGES +3 −0 Original line number Diff line number Diff line Loading @@ -6,6 +6,9 @@ Changelog Daniel Stenberg (4 Nov 2008) - CURLINFO_FILETIME now works for file:// transfers as well Daniel Stenberg (3 Nov 2008) - Bug #2218480 (http://curl.haxx.se/bug/view.cgi?id=2218480) pointed out a problem with my CURLINFO_PRIMARY_IP fix from October 7th that caused a NULL Loading RELEASE-NOTES +2 −1 Original line number Diff line number Diff line Loading @@ -42,7 +42,8 @@ This release includes the following bugfixes: o Solaris builds get _REENTRANT defined properly and work again o Garbage sent on chunky upload after curl_easy_pause() o ipv4 name resolves when libcurl is built with ipv6-enabled c-ares o undersized IPv6 address internal buffer truncates long IPv6 addresses o undersized IPv6 address internal buffer truncated long IPv6 addresses o CURLINFO_FILETIME works for file:// transfers as well This release includes the following known bugs: Loading lib/file.c +2 −0 Original line number Diff line number Diff line Loading @@ -451,6 +451,8 @@ static CURLcode file_do(struct connectdata *conn, bool *done) if( -1 != fstat(fd, &statbuf)) { /* we could stat it, then read out the size */ expected_size = statbuf.st_size; /* and store the modification time */ data->info.filetime = (long)statbuf.st_mtime; fstated = TRUE; } Loading Loading
CHANGES +3 −0 Original line number Diff line number Diff line Loading @@ -6,6 +6,9 @@ Changelog Daniel Stenberg (4 Nov 2008) - CURLINFO_FILETIME now works for file:// transfers as well Daniel Stenberg (3 Nov 2008) - Bug #2218480 (http://curl.haxx.se/bug/view.cgi?id=2218480) pointed out a problem with my CURLINFO_PRIMARY_IP fix from October 7th that caused a NULL Loading
RELEASE-NOTES +2 −1 Original line number Diff line number Diff line Loading @@ -42,7 +42,8 @@ This release includes the following bugfixes: o Solaris builds get _REENTRANT defined properly and work again o Garbage sent on chunky upload after curl_easy_pause() o ipv4 name resolves when libcurl is built with ipv6-enabled c-ares o undersized IPv6 address internal buffer truncates long IPv6 addresses o undersized IPv6 address internal buffer truncated long IPv6 addresses o CURLINFO_FILETIME works for file:// transfers as well This release includes the following known bugs: Loading
lib/file.c +2 −0 Original line number Diff line number Diff line Loading @@ -451,6 +451,8 @@ static CURLcode file_do(struct connectdata *conn, bool *done) if( -1 != fstat(fd, &statbuf)) { /* we could stat it, then read out the size */ expected_size = statbuf.st_size; /* and store the modification time */ data->info.filetime = (long)statbuf.st_mtime; fstated = TRUE; } Loading