aboutsummaryrefslogtreecommitdiff
path: root/archival/libunarchive
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-11-15 02:28:56 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2009-11-15 02:28:56 +0100
commit389cca4b9ed07be8d873b2aae01f3eb0c3474f7c (patch)
tree4ec81672d1bd6b18578576b876659d6a257ca5ae /archival/libunarchive
parenta307af1af62c51e33e2801d74dbc35560af0fc0e (diff)
downloadbusybox-w32-389cca4b9ed07be8d873b2aae01f3eb0c3474f7c.tar.gz
busybox-w32-389cca4b9ed07be8d873b2aae01f3eb0c3474f7c.tar.bz2
busybox-w32-389cca4b9ed07be8d873b2aae01f3eb0c3474f7c.zip
some non-gnu compilers can't have non-const struct initializers
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/libunarchive')
-rw-r--r--archival/libunarchive/data_extract_all.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/archival/libunarchive/data_extract_all.c b/archival/libunarchive/data_extract_all.c
index 889face10..294024bbb 100644
--- a/archival/libunarchive/data_extract_all.c
+++ b/archival/libunarchive/data_extract_all.c
@@ -143,8 +143,10 @@ void FAST_FUNC data_extract_all(archive_handle_t *archive_handle)
143 } 143 }
144 /* same for utime */ 144 /* same for utime */
145 if (archive_handle->ah_flags & ARCHIVE_RESTORE_DATE) { 145 if (archive_handle->ah_flags & ARCHIVE_RESTORE_DATE) {
146 struct timeval t = {.tv_sec = file_header->mtime, 146 struct timeval t;
147 .tv_usec = 0}; 147
148 t.tv_sec = file_header->mtime;
149 t.tv_usec = 0;
148 utimes(file_header->name, &t); 150 utimes(file_header->name, &t);
149 } 151 }
150 } 152 }