diff options
Diffstat (limited to 'dpkg_deb.c')
-rw-r--r-- | dpkg_deb.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -24,7 +24,7 @@ extern int dpkg_deb_main(int argc, char **argv) int opt = 0; int optflag = 0; - while ((opt = getopt(argc, argv, "cexXl")) != -1) { + while ((opt = getopt(argc, argv, "cetXxl")) != -1) { switch (opt) { case 'c': optflag |= extract_contents; @@ -32,6 +32,9 @@ extern int dpkg_deb_main(int argc, char **argv) case 'e': optflag |= extract_control; break; + case 't': + optflag |= extract_fsys_tarfile; + break; case 'X': optflag |= extract_verbose_extract; break; |