tar et al: die if bb_copyfd_size copies less than asked for.
[oweals/busybox.git] / archival / libunarchive / header_verbose_list.c
index 7dc902e71df6f787d617b6137c137bbc851f74ad..7b97e524c863e4dbf0a3050248615bdd0e904444 100644 (file)
@@ -1,6 +1,8 @@
-#include <stdio.h>
-#include <string.h>
-#include <time.h>
+/* 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"
 
@@ -8,11 +10,11 @@ void header_verbose_list(const file_header_t *file_header)
 {
        struct tm *mtime = localtime(&(file_header->mtime));
 
-       printf("%s %d/%d%10u %4u-%02u-%02u %02u:%02u:%02u %s",
+       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,
-               (unsigned int) file_header->size,
+               file_header->size,
                1900 + mtime->tm_year,
                1 + mtime->tm_mon,
                mtime->tm_mday,