aboutsummaryrefslogtreecommitdiffstats
path: root/url.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-12-14 15:18:37 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-12-14 15:18:37 +0000
commit26a8e37fdcab433c8e623b29fb35c0907b2a05de (patch)
tree9228e612a67095337200051b47b0f14c99485ac8 /url.c
parent[w3m-dev 03567] default keybinding (diff)
downloadw3m-26a8e37fdcab433c8e623b29fb35c0907b2a05de.tar.gz
w3m-26a8e37fdcab433c8e623b29fb35c0907b2a05de.zip
[w3m-dev 03568] Re: preserve timestamp
* etc.c (USE_COOKIE): moved * file.c (utime.h): include (setModtime): added (loadGeneralFile): set f.modtime (_doFileCopy): setModtime() (doFileSave): setModtime() * ftp.c (getFtpModtime): added (openFTP): pass URLFile, set modtime * html.h (URLFile): add modtime * proto.h (openFTP): arg URLFile *uf (mymktime): always * url.c (init_stream): initialize modtime (openFTPStream): pass URLFile (openURL): openFTPStream From: Takahashi Youichirou <nikuq@hk.airnet.ne.jp>
Diffstat (limited to 'url.c')
-rw-r--r--url.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/url.c b/url.c
index 03e4c2f..fd328c3 100644
--- a/url.c
+++ b/url.c
@@ -1,4 +1,4 @@
-/* $Id: url.c,v 1.58 2002/11/18 17:32:33 ukai Exp $ */
+/* $Id: url.c,v 1.59 2002/12/14 15:18:39 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include <sys/socket.h>
@@ -1412,12 +1412,13 @@ init_stream(URLFile *uf, int scheme, InputStream stream)
uf->compression = 0;
uf->guess_type = NULL;
uf->ext = NULL;
+ uf->modtime = -1;
}
static InputStream
-openFTPStream(ParsedURL *pu)
+openFTPStream(ParsedURL *pu, URLFile *uf)
{
- return newFileStream(openFTP(pu), closeFTP);
+ return newFileStream(openFTP(pu, uf), closeFTP);
}
URLFile
@@ -1587,7 +1588,7 @@ openURL(char *url, ParsedURL *pu, ParsedURL *current,
write(sock, tmp->ptr, tmp->length);
}
else {
- uf.stream = openFTPStream(pu);
+ uf.stream = openFTPStream(pu, &uf);
uf.scheme = pu->scheme;
return uf;
}