From: Tim Kientzle Date: Fri, 11 Feb 2011 07:06:52 +0000 (-0500) Subject: Change mode and compress to int to match other option-processing variables. X-Git-Tag: v3.0.0a~701 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb50435cac6b9adb5cd9d91c1e4e642241850adb;p=thirdparty%2Flibarchive.git Change mode and compress to int to match other option-processing variables. Remove unused symlink_mode var. SVN-Revision: 2963 --- diff --git a/cpio/cpio.h b/cpio/cpio.h index 46b26db29..05f4f4e71 100644 --- a/cpio/cpio.h +++ b/cpio/cpio.h @@ -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 */