summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2015-04-02 23:56:02 +0200
committerGuillem Jover <guillem@debian.org>2015-04-06 05:09:32 +0200
commit770965969c0ec9edc91ab9cdada5c97b022809dd (patch)
tree66b295928cacdfa7930c06e84e1d1600701fa331 /src
parentf79acb2abcecc8aa8e28ca85e149789aa98fc723 (diff)
downloaddpkg-770965969c0ec9edc91ab9cdada5c97b022809dd.tar.gz
dpkg: Add --ctrl-tarfile forwarding command for dpkg-deb
Diffstat (limited to 'src')
-rw-r--r--src/main.c6
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 }
};