summaryrefslogtreecommitdiff
path: root/i/pc104/initrd/conf/busybox/archival/libunarchive/header_verbose_list.c
diff options
context:
space:
mode:
Diffstat (limited to 'i/pc104/initrd/conf/busybox/archival/libunarchive/header_verbose_list.c')
-rw-r--r--i/pc104/initrd/conf/busybox/archival/libunarchive/header_verbose_list.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/i/pc104/initrd/conf/busybox/archival/libunarchive/header_verbose_list.c b/i/pc104/initrd/conf/busybox/archival/libunarchive/header_verbose_list.c
new file mode 100644
index 0000000..7b97e52
--- /dev/null
+++ b/i/pc104/initrd/conf/busybox/archival/libunarchive/header_verbose_list.c
@@ -0,0 +1,31 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ */
+
+#include "libbb.h"
+#include "unarchive.h"
+
+void header_verbose_list(const file_header_t *file_header)
+{
+ struct tm *mtime = localtime(&(file_header->mtime));
+
+ printf("%s %d/%d %9"OFF_FMT"u %4u-%02u-%02u %02u:%02u:%02u %s",
+ bb_mode_string(file_header->mode),
+ file_header->uid,
+ file_header->gid,
+ file_header->size,
+ 1900 + mtime->tm_year,
+ 1 + mtime->tm_mon,
+ mtime->tm_mday,
+ mtime->tm_hour,
+ mtime->tm_min,
+ mtime->tm_sec,
+ file_header->name);
+
+ if (file_header->link_name) {
+ printf(" -> %s", file_header->link_name);
+ }
+ /* putchar isnt used anywhere else i dont think */
+ puts("");
+}