use the proper timecond defines, not the obsolete ones!

This commit is contained in:
Daniel Stenberg 2004-01-21 08:47:21 +00:00
parent 945c6f7279
commit e262a7265a
1 changed files with 2 additions and 2 deletions

View File

@ -888,7 +888,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
HTTP/1.1 client */
if((k->timeofdoc > 0) && (data->set.timevalue > 0)) {
switch(data->set.timecondition) {
case TIMECOND_IFMODSINCE:
case CURL_TIMECOND_IFMODSINCE:
default:
if(k->timeofdoc < data->set.timevalue) {
infof(data,
@ -897,7 +897,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
return CURLE_OK;
}
break;
case TIMECOND_IFUNMODSINCE:
case CURL_TIMECOND_IFUNMODSINCE:
if(k->timeofdoc > data->set.timevalue) {
infof(data,
"The requested document is not old enough\n");