Convert static declarations of struct option to use new macros from

getopt.h: no_argument, required_argument, and optional_argument.
This commit is contained in:
Jim Meyering 1992-12-02 18:51:53 +00:00
parent b4a5684416
commit a261f05865
1 changed files with 5 additions and 5 deletions

View File

@ -164,11 +164,11 @@ static int change_environment;
static struct option const longopts[] =
{
{"command", 1, 0, 'c'},
{"fast", 0, &fast_startup, 1},
{"login", 0, &simulate_login, 1},
{"preserve-environment", 0, &change_environment, 0},
{"shell", 1, 0, 's'},
{"command", required_argument, 0, 'c'},
{"fast", no_argument, &fast_startup, 1},
{"login", no_argument, &simulate_login, 1},
{"preserve-environment", no_argument, &change_environment, 0},
{"shell", required_argument, 0, 's'},
{0, 0, 0, 0}
};