From: Nick Bowler Date: Wed, 19 Jun 2013 00:45:04 +0000 (-0400) Subject: lbximg: Allow --identify as a long option. X-Git-Url: https://git.draconx.ca/gitweb/liblbx.git/commitdiff_plain/412512cc2c99762dd122f57a82cc174f414265e5 lbximg: Allow --identify as a long option. There is no reason to not have a full word here. The getopt_long function allows abbreviations anyway, so --ident remains perfectly fine as an option. --- diff --git a/src/lbximg.c b/src/lbximg.c index e4eb461..0a0057a 100644 --- a/src/lbximg.c +++ b/src/lbximg.c @@ -332,7 +332,7 @@ int main(int argc, char **argv) static const char sopts[] = "idnvF:f:p:O:VH"; static const struct option lopts[] = { - { "ident", 0, NULL, 'i' }, + { "identify", 0, NULL, 'i' }, { "decode", 0, NULL, 'd' }, { "verbose", 0, NULL, 'v' }, { "file", 1, NULL, 'f' },