renamed the TIMECOND defines to be CURL_ prefixed
authorDaniel Stenberg <daniel@haxx.se>
Mon, 22 Apr 2002 23:53:15 +0000 (23:53 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 22 Apr 2002 23:53:15 +0000 (23:53 +0000)
lib/http.c

index dc074ac..a4deeb1 100644 (file)
@@ -781,16 +781,16 @@ CURLcode Curl_http(struct connectdata *conn)
       strcpy(buf, "no strftime() support");
 #endif
       switch(data->set.timecondition) {
-      case TIMECOND_IFMODSINCE:
+      case CURL_TIMECOND_IFMODSINCE:
       default:
         add_bufferf(req_buffer,
                     "If-Modified-Since: %s\r\n", buf);
         break;
-      case TIMECOND_IFUNMODSINCE:
+      case CURL_TIMECOND_IFUNMODSINCE:
         add_bufferf(req_buffer,
                     "If-Unmodified-Since: %s\r\n", buf);
         break;
-      case TIMECOND_LASTMOD:
+      case CURL_TIMECOND_LASTMOD:
         add_bufferf(req_buffer,
                     "Last-Modified: %s\r\n", buf);
         break;