1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 18:55:19 +03:00

Fix (rare) bug in recognition of long argument forms.

This commit is contained in:
Alasdair Kergon 2004-03-08 13:54:45 +00:00
parent a5777ba3f7
commit 02cb3ccdc4

View File

@ -434,7 +434,8 @@ static struct arg *_find_arg(struct command *com, int opt)
* short arg, or the index into
* 'the_args'.
*/
if ((a->short_arg && (opt == a->short_arg)) || (opt == arg))
if ((a->short_arg && (opt == a->short_arg)) ||
(!a->short_arg && (opt == arg)))
return a;
}