]> git.ipfire.org Git - thirdparty/tar.git/commitdiff
Bugfix
authorSergey Poznyakoff <gray@gnu.org>
Thu, 24 Aug 2017 19:18:39 +0000 (22:18 +0300)
committerSergey Poznyakoff <gray@gnu.org>
Thu, 24 Aug 2017 19:18:39 +0000 (22:18 +0300)
* src/tar.c (tar_help_filter): Add missing break statement

src/tar.c

index ea68c82deed508149bd1ac368cec22f5f5fdfec8..07a69956a8e2a55f54f8887441182d451f1b546d 100644 (file)
--- 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);