Commit e262a726 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

use the proper timecond defines, not the obsolete ones!

parent 945c6f72
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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");