* src/getargs.c (getargs): Don't dump `--help' on unrecognized

options.
This commit is contained in:
Akim Demaille
2000-10-02 10:22:19 +00:00
parent 444c570aad
commit c33638bb30
3 changed files with 10 additions and 1 deletions

View File

@@ -214,7 +214,8 @@ getargs (int argc, char *argv[])
break;
default:
usage (stderr);
fprintf (stderr, _("Try `%s --help' for more information.\n"),
program_name);
exit (1);
}
}