blob: 310efa59458960afccacb6b72aa8b6ea43924e7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-ab,v 1.9 2010/11/28 13:06:17 drochner Exp $
--- src/fr-command-lrzip.c.orig 2010-11-16 17:30:30.000000000 +0000
+++ src/fr-command-lrzip.c
@@ -53,7 +53,7 @@ list__process_line (char *line,
struct stat st;
time_t tt;
if (stat (comm->filename, &st) == 0)
- fdata->modified = st.st_mtim.tv_sec;
+ fdata->modified = st.st_mtime;
else
time(&(fdata->modified));
fdata->modified;
|