aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-04-22 23:53:15 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-04-22 23:53:15 +0000
commitef436bdbe8a28626e11462d77b66f6b4bb36d737 (patch)
treeddbd9f76694d3f18ed94fc75cdb222129997681e /lib/http.c
parent72d722b07b342a8fb985e98be6c4ffeaf947a890 (diff)
renamed the TIMECOND defines to be CURL_ prefixed
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/http.c b/lib/http.c
index dc074aced..a4deeb14b 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -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;