* mkgroup.c (main): Always unset environment variable POSIXLY_CORRECT.

Keep track of optional argumnts and fix up optind afterwards.
	* mkpasswd.c (main): Ditto.
This commit is contained in:
Corinna Vinschen
2008-08-18 08:33:48 +00:00
parent c7aa4aec42
commit 01dd3162ff
3 changed files with 16 additions and 0 deletions

View File

@@ -719,6 +719,7 @@ main (int argc, char **argv)
char *disp_username = NULL;
char passed_home_path[PATH_MAX];
BOOL in_domain;
int optional_args = 0;
passed_home_path[0] = '\0';
if (!isatty (1))
@@ -740,6 +741,7 @@ main (int argc, char **argv)
return 0;
}
unsetenv ("POSIXLY_CORRECT"); /* To get optional arg processing right. */
while ((c = getopt_long (argc, argv, opts, longopts, NULL)) != EOF)
switch (c)
{
@@ -756,6 +758,8 @@ main (int argc, char **argv)
domlist[print_domlist].domain = (c == 'd' || c == 'D');
opt = optarg ?:
argv[optind] && argv[optind][0] != '-' ? argv[optind] : NULL;
if (opt == argv[optind])
++optional_args;
for (i = 0; i < print_domlist; ++i)
if (domlist[i].domain == domlist[print_domlist].domain
&& ((!domlist[i].str && !opt)
@@ -852,6 +856,7 @@ skip:
return 1;
}
optind += optional_args;
if (argv[optind])
{
fprintf (stderr,