diff options
Diffstat (limited to 'archival/bbunzip.c')
-rw-r--r-- | archival/bbunzip.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archival/bbunzip.c b/archival/bbunzip.c index 22a0fd189..df674bc6c 100644 --- a/archival/bbunzip.c +++ b/archival/bbunzip.c | |||
@@ -105,15 +105,15 @@ int FAST_FUNC bbunpack(char **argv, | |||
105 | if (status >= 0) { | 105 | if (status >= 0) { |
106 | /* TODO: restore other things? */ | 106 | /* TODO: restore other things? */ |
107 | if (info.mtime) { | 107 | if (info.mtime) { |
108 | struct timeval times; | 108 | struct timeval times[2]; |
109 | 109 | ||
110 | times.tv_sec = info.mtime; | 110 | times[1].tv_sec = times[0].tv_sec = info.mtime; |
111 | times.tv_usec = 0; | 111 | times[1].tv_usec = times[0].tv_usec = 0; |
112 | /* Note: we closed it first. | 112 | /* Note: we closed it first. |
113 | * On some systems calling utimes | 113 | * On some systems calling utimes |
114 | * then closing resets the mtime | 114 | * then closing resets the mtime |
115 | * back to current time. */ | 115 | * back to current time. */ |
116 | utimes(new_name, ×); /* ignoring errors */ | 116 | utimes(new_name, times); /* ignoring errors */ |
117 | } | 117 | } |
118 | 118 | ||
119 | /* Delete _compressed_ file */ | 119 | /* Delete _compressed_ file */ |