* src/pwconv.c, src/pwunconv.c: Fail if unexpected parameters are

provided.
This commit is contained in:
nekral-guest
2008-08-31 17:30:00 +00:00
parent 6c5e97e745
commit c04189bfb6
3 changed files with 11 additions and 0 deletions

View File

@ -118,6 +118,9 @@ int main (int argc, char **argv)
const struct spwd *sp;
struct spwd spent;
if (1 != argc) {
(void) fputs (_("Usage: pwconv\n"), stderr);
}
Prog = Basename (argv[0]);
(void) setlocale (LC_ALL, "");