From: Sergey Poznyakoff Date: Thu, 24 Aug 2017 19:18:39 +0000 (+0300) Subject: Bugfix X-Git-Tag: release_1_30~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=228d83ed248df3c244ff69bf5104da6fc143e1df;p=thirdparty%2Ftar.git Bugfix * src/tar.c (tar_help_filter): Add missing break statement --- 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);