]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Change mode and compress to int to match other option-processing variables.
authorTim Kientzle <kientzle@gmail.com>
Fri, 11 Feb 2011 07:06:52 +0000 (02:06 -0500)
committerTim Kientzle <kientzle@gmail.com>
Fri, 11 Feb 2011 07:06:52 +0000 (02:06 -0500)
Remove unused symlink_mode var.

SVN-Revision: 2963

cpio/cpio.h

index 46b26db29d1f9dadf225c335ddbdd0fcd7f28b7f..05f4f4e71b765235e080ba2fcb2825a461d12afe 100644 (file)
@@ -47,15 +47,14 @@ struct cpio {
 
        /* Options */
        const char       *filename;
-       char              mode; /* -i -o -p */
-       char              compress; /* -j, -y, or -z */
+       int               mode; /* -i -o -p */
+       int               compress; /* -j, -y, or -z */
        const char       *format; /* -H format */
        int               bytes_per_block; /* -b block_size */
        int               verbose;   /* -v */
        int               dot;  /* -V */
        int               quiet;   /* --quiet */
        int               extract_flags; /* Flags for extract operation */
-       char              symlink_mode; /* H or L, per BSD conventions */
        const char       *compress_program;
        int               option_append; /* -A, only relevant for -o */
        int               option_atime_restore; /* -a */