summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2017-08-24 22:18:39 +0300
committerSergey Poznyakoff <gray@gnu.org>2017-08-24 22:18:39 +0300
commit228d83ed248df3c244ff69bf5104da6fc143e1df (patch)
tree7ee4ae8c989f924eca3b2fb6ecabf29681d477a4
parentede0d1b42d9a688aba35739e7de97f8279e0512f (diff)
downloadtar-228d83ed248df3c244ff69bf5104da6fc143e1df.tar.gz
Bugfix
* src/tar.c (tar_help_filter): Add missing break statement
-rw-r--r--src/tar.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tar.c b/src/tar.c
index ea68c82d..07a69956 100644
--- a/src/tar.c
+++ b/src/tar.c
@@ -1123,6 +1123,7 @@ tar_help_filter (int key, const char *text, void *input)
case LZOP_OPTION:
s = xasprintf (_("filter the archive through %s"), LZOP_PROGRAM);
+ break;
case 'J':
s = xasprintf (_("filter the archive through %s"), XZ_PROGRAM);