New dpkg-deb function -t, stands for --fsys-tarfile

This commit is contained in:
Glenn L McGrath
2001-04-12 13:49:09 +00:00
parent c9cac5be23
commit 3e2ab88ee2
7 changed files with 41 additions and 24 deletions

View File

@@ -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;