diff options
author | Guillem Jover <guillem@debian.org> | 2015-04-02 23:56:02 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2015-04-06 05:09:32 +0200 |
commit | 770965969c0ec9edc91ab9cdada5c97b022809dd (patch) | |
tree | 66b295928cacdfa7930c06e84e1d1600701fa331 /src | |
parent | f79acb2abcecc8aa8e28ca85e149789aa98fc723 (diff) | |
download | dpkg-770965969c0ec9edc91ab9cdada5c97b022809dd.tar.gz |
dpkg: Add --ctrl-tarfile forwarding command for dpkg-deb
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index 4cb846a97..8d449ead5 100644 --- a/src/main.c +++ b/src/main.c @@ -120,8 +120,9 @@ usage(const struct cmdinfo *ci, const char *value) "\n")); printf(_( -"Use dpkg -b|--build|-c|--contents|-e|--control|-I|--info|-f|--field|\n" -" -x|--extract|-X|--vextract|--fsys-tarfile on archives (type %s --help).\n" +"Use dpkg with -b, --build, -c, --contents, -e, --control, -I, --info,\n" +" -f, --field, -x, --extract, -X, --vextract, --ctrl-tarfile, --fsys-tarfile\n" +"on archives (type %s --help).\n" "\n"), BACKEND); printf(_( @@ -740,6 +741,7 @@ static const struct cmdinfo cmdinfos[]= { ACTIONBACKEND( "field", 'f', BACKEND), ACTIONBACKEND( "extract", 'x', BACKEND), ACTIONBACKEND( "vextract", 'X', BACKEND), + ACTIONBACKEND( "ctrl-tarfile", 0, BACKEND), ACTIONBACKEND( "fsys-tarfile", 0, BACKEND), { NULL, 0, 0, NULL, NULL, NULL, 0 } }; |