From 412512cc2c99762dd122f57a82cc174f414265e5 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Tue, 18 Jun 2013 20:45:04 -0400 Subject: [PATCH] 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. --- src/lbximg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' }, -- 2.43.0