*: fix up use of "getopt_longopts" for longopts not in getopt applet
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@ -38,13 +38,13 @@ int flock_main(int argc UNUSED_PARAM, char **argv)
|
||||
};
|
||||
|
||||
#if ENABLE_LONG_OPTS
|
||||
static const char getopt_longopts[] ALIGN1 =
|
||||
static const char flock_longopts[] ALIGN1 =
|
||||
"shared\0" No_argument "s"
|
||||
"exclusive\0" No_argument "x"
|
||||
"unlock\0" No_argument "u"
|
||||
"nonblock\0" No_argument "n"
|
||||
;
|
||||
applet_long_options = getopt_longopts;
|
||||
applet_long_options = flock_longopts;
|
||||
#endif
|
||||
opt_complementary = "-1";
|
||||
|
||||
|
@ -63,13 +63,13 @@ int fstrim_main(int argc UNUSED_PARAM, char **argv)
|
||||
};
|
||||
|
||||
#if ENABLE_LONG_OPTS
|
||||
static const char getopt_longopts[] ALIGN1 =
|
||||
static const char fstrim_longopts[] ALIGN1 =
|
||||
"offset\0" Required_argument "o"
|
||||
"length\0" Required_argument "l"
|
||||
"minimum\0" Required_argument "m"
|
||||
"verbose\0" No_argument "v"
|
||||
;
|
||||
applet_long_options = getopt_longopts;
|
||||
applet_long_options = fstrim_longopts;
|
||||
#endif
|
||||
|
||||
opt_complementary = "=1"; /* exactly one non-option arg: the mountpoint */
|
||||
|
@ -71,7 +71,7 @@ int script_main(int argc UNUSED_PARAM, char **argv)
|
||||
};
|
||||
|
||||
#if ENABLE_LONG_OPTS
|
||||
static const char getopt_longopts[] ALIGN1 =
|
||||
static const char script_longopts[] ALIGN1 =
|
||||
"append\0" No_argument "a"
|
||||
"command\0" Required_argument "c"
|
||||
"flush\0" No_argument "f"
|
||||
@ -79,7 +79,7 @@ int script_main(int argc UNUSED_PARAM, char **argv)
|
||||
"timing\0" Optional_argument "t"
|
||||
;
|
||||
|
||||
applet_long_options = getopt_longopts;
|
||||
applet_long_options = script_longopts;
|
||||
#endif
|
||||
|
||||
opt_complementary = "?1"; /* max one arg */
|
||||
|
Reference in New Issue
Block a user