summaryrefslogtreecommitdiff
path: root/libftpconn/unix.c
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1997-08-06 22:21:36 +0000
committerMiles Bader <miles@gnu.org>1997-08-06 22:21:36 +0000
commit841345f7634c27daeaa245f408e8ef13a8e40527 (patch)
tree4b0e37a4fc17cb1c976a9bf86e94756271ec6b55 /libftpconn/unix.c
parente230c8d205f4d526b93603891987b1f5592f6874 (diff)
(parse_dir_entry):
Re-enable mktime calls.
Diffstat (limited to 'libftpconn/unix.c')
-rw-r--r--libftpconn/unix.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libftpconn/unix.c b/libftpconn/unix.c
index c32a76fc..5b6e3125 100644
--- a/libftpconn/unix.c
+++ b/libftpconn/unix.c
@@ -457,11 +457,9 @@ drwxrwxrwt 7 34 archive 512 May 1 14:28 /tmp
else
tm.tm_year = PARSE_INT () - 1900;
-#if 0 /* Avoid kernel lossage while debugging XXX */
stat->st_mtime = mktime (&tm);
if (stat->st_mtime == (time_t)-1)
return EGRATUITOUS;
-#endif
/* atime and ctime are the same as mtime. */
stat->st_atime = stat->st_ctime = stat->st_mtime;