From: Stanislav Brabec Date: Wed, 5 Oct 2016 18:55:42 +0000 (+0200) Subject: losetup --nooverlap: fix typo X-Git-Tag: v2.29-rc2~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3b0d1505ed21a4284a4fe54d2d9b7dea6f4b62b;p=thirdparty%2Futil-linux.git losetup --nooverlap: fix typo Option is documented and used as --nooverlap, bud coded as --nooverlaps. --nooverlap is considered as shortened option, making the typo invisible. Signed-off-by: Stanislav Brabec --- diff --git a/sys-utils/losetup.c b/sys-utils/losetup.c index 9083a13729..215ab9c869 100644 --- a/sys-utils/losetup.c +++ b/sys-utils/losetup.c @@ -579,7 +579,7 @@ int main(int argc, char **argv) { "detach", 1, 0, 'd' }, { "detach-all", 0, 0, 'D' }, { "find", 0, 0, 'f' }, - { "nooverlaps", 0, 0, 'L' }, + { "nooverlap", 0, 0, 'L' }, { "help", 0, 0, 'h' }, { "associated", 1, 0, 'j' }, { "json", 0, 0, 'J' },