aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-10-31 21:36:43 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-10-31 21:36:43 +0000
commita7aacac5e89f70e64e019345dff5cf615e93dbbc (patch)
tree07a6cce9016fed692a52b66a8e4259f02ae0f83f /lib/ftp.c
parentdecdb93ccbbcce84a225aa4fc080187726304acc (diff)
assume that MDTM returns the timestamp as UTC
Diffstat (limited to 'lib/ftp.c')
-rw-r--r--lib/ftp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index db3448248..0f067c5da 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -774,7 +774,7 @@ CURLcode ftp_getfiletime(struct connectdata *conn, char *file)
&year, &month, &day, &hour, &minute, &second)) {
/* we have a time, reformat it */
time_t secs=time(NULL);
- sprintf(buf, "%04d%02d%02d %02d:%02d:%02d",
+ sprintf(buf, "%04d%02d%02d %02d:%02d:%02d GMT",
year, month, day, hour, minute, second);
/* now, convert this into a time() value: */
conn->data->info.filetime = curl_getdate(buf, &secs);
@@ -2097,14 +2097,14 @@ CURLcode ftp_perform(struct connectdata *conn,
#ifdef HAVE_STRFTIME
if(data->set.get_filetime && (data->info.filetime>=0) ) {
struct tm *tm;
-#ifdef HAVE_LOCALTIME_R
+#ifdef HAVE_GMTIME_R
struct tm buffer;
- tm = (struct tm *)localtime_r((time_t *)&data->info.filetime, &buffer);
+ tm = (struct tm *)gmtime_r((time_t *)&data->info.filetime, &buffer);
#else
- tm = localtime((time_t *)&data->info.filetime);
+ tm = gmtime((time_t *)&data->info.filetime);
#endif
/* format: "Tue, 15 Nov 1994 12:45:26" */
- strftime(buf, BUFSIZE-1, "Last-Modified: %a, %d %b %Y %H:%M:%S\r\n",
+ strftime(buf, BUFSIZE-1, "Last-Modified: %a, %d %b %Y %H:%M:%S GMT\r\n",
tm);
result = Curl_client_write(data, CLIENTWRITE_BOTH, buf, 0);
if(result)