Fix error message (complements 0ea6e686)

* src/tar.c (set_subcommand_option): Mention --delete in the error message.
This commit is contained in:
Sergey Poznyakoff
2013-09-21 15:07:01 +03:00
parent b6979c7278
commit 570a2c5f3d

View File

@@ -970,7 +970,7 @@ set_subcommand_option (enum subcommand subcommand)
if (subcommand_option != UNKNOWN_SUBCOMMAND
&& subcommand_option != subcommand)
USAGE_ERROR ((0, 0,
_("You may not specify more than one '-Acdtrux' or '--test-label' option")));
_("You may not specify more than one '-Acdtrux', '--delete' or '--test-label' option")));
subcommand_option = subcommand;
}