https://bugzilla.novell.com/show_bug.cgi?id=421726 User jkupec@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=421726#c26 Ján Kupec <jkupec@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ma@novell.com --- Comment #26 from Ján Kupec <jkupec@novell.com> 2008-12-10 05:56:51 MST --- OK, thanx. Also note that the time condition is set like this on 11.0: // set IFMODSINCE time condition (no download if not modified) curl_easy_setopt(_curl, CURLOPT_TIMECONDITION, CURL_TIMECOND_IFMODSINCE); curl_easy_setopt(_curl, CURLOPT_TIMEVALUE, PathInfo(target).mtime()); while on 11.1 it to code is: if( PathInfo(target).isExist() ) { curl_easy_setopt(_curl, CURLOPT_TIMECONDITION, CURL_TIMECOND_IFMODSINCE); curl_easy_setopt(_curl, CURLOPT_TIMEVALUE, PathInfo(target).mtime()); } else { curl_easy_setopt(_curl, CURLOPT_TIMECONDITION, CURL_TIMECOND_NONE); curl_easy_setopt(_curl, CURLOPT_TIMEVALUE, 0); } Maybe Michael introduced this change to fix exactly this problem? (CURL_TIMECOND_IFMODSINCE and 0 value (non-existing file) caused 304 response from (some) servers?). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.