A first pass at making D_FILE_OFFSET_BITS=64 work, from
authorEric Andersen <andersen@codepoet.org>
Thu, 5 Apr 2001 23:07:25 +0000 (23:07 -0000)
committerEric Andersen <andersen@codepoet.org>
Thu, 5 Apr 2001 23:07:25 +0000 (23:07 -0000)
Jari Ruusu <jari.ruusu@pp.inet.fi>

ar.c
archival/ar.c
libbb/copy_file_chunk.c

diff --git a/ar.c b/ar.c
index 59f51815fe88355ee89d7183e2b2518c3b017f42..d666719006ec359bf043e8f4a38cda84654be7d3 100644 (file)
--- a/ar.c
+++ b/ar.c
@@ -31,7 +31,7 @@
 
 typedef struct ar_headers_s {
        char *name;
-       size_t size;
+       off_t size;
        uid_t uid;
        gid_t gid;
        mode_t mode;
@@ -90,7 +90,7 @@ extern ar_headers_t get_ar_headers(int srcFd)
                        /* dont worry about adding the last '\n', we dont need it now */
                }
                
-               entry->size = (size_t) atoi(raw_ar_header.size);
+               entry->size = (off_t) atoi(raw_ar_header.size);
                /* long filenames have '/' as the first character */
                if (raw_ar_header.name[0] == '/') {
                        if (raw_ar_header.name[1] == '/') {
@@ -211,7 +211,7 @@ extern int ar_main(int argc, char **argv)
                }
                if ((funct & extract_to_file) || (funct & extract_to_stdout)) {
                        lseek(srcFd, extract_list->offset, SEEK_SET);
-                       copy_file_chunk(srcFd, dstFd, (size_t) extract_list->size);                     
+                       copy_file_chunk(srcFd, dstFd, (off_t) extract_list->size);                      
                }
                if (funct & verbose) {
                        printf("%s %d/%d %8d %s ", mode_string(extract_list->mode), 
index 59f51815fe88355ee89d7183e2b2518c3b017f42..d666719006ec359bf043e8f4a38cda84654be7d3 100644 (file)
@@ -31,7 +31,7 @@
 
 typedef struct ar_headers_s {
        char *name;
-       size_t size;
+       off_t size;
        uid_t uid;
        gid_t gid;
        mode_t mode;
@@ -90,7 +90,7 @@ extern ar_headers_t get_ar_headers(int srcFd)
                        /* dont worry about adding the last '\n', we dont need it now */
                }
                
-               entry->size = (size_t) atoi(raw_ar_header.size);
+               entry->size = (off_t) atoi(raw_ar_header.size);
                /* long filenames have '/' as the first character */
                if (raw_ar_header.name[0] == '/') {
                        if (raw_ar_header.name[1] == '/') {
@@ -211,7 +211,7 @@ extern int ar_main(int argc, char **argv)
                }
                if ((funct & extract_to_file) || (funct & extract_to_stdout)) {
                        lseek(srcFd, extract_list->offset, SEEK_SET);
-                       copy_file_chunk(srcFd, dstFd, (size_t) extract_list->size);                     
+                       copy_file_chunk(srcFd, dstFd, (off_t) extract_list->size);                      
                }
                if (funct & verbose) {
                        printf("%s %d/%d %8d %s ", mode_string(extract_list->mode), 
index 3c657dd069ff0c853ecdbdeecca3281d74291d0c..bf0b06e1a89fe6a0c6e1204ca8ed58082e88cfa2 100644 (file)
@@ -32,9 +32,9 @@
 /*
  * Copy chunksize bytes between two file descriptors
  */
-int copy_file_chunk(int srcfd, int dstfd, size_t chunksize)
+int copy_file_chunk(int srcfd, int dstfd, off_t chunksize)
 {
-        size_t size;
+        off_t size;
         char buffer[BUFSIZ]; /* BUFSIZ is declared in stdio.h */
 
         while (chunksize > 0) {