provided.
+2008-08-29 Nicolas François <nicolas.francois@centraliens.net>
+
+ * src/pwconv.c, src/pwunconv.c: Fail if unexpected parameters are
+ provided.
+
2008-08-29 Nicolas François <nicolas.francois@centraliens.net>
* src/passwd.c: Add brackets and parenthesis.
const struct spwd *sp;
struct spwd spent;
+ if (1 != argc) {
+ (void) fputs (_("Usage: pwconv\n"), stderr);
+ }
Prog = Basename (argv[0]);
(void) setlocale (LC_ALL, "");
struct passwd pwent;
const struct spwd *spwd;
+ if (1 != argc) {
+ (void) fputs (_("Usage: pwunconv\n"), stderr);
+ }
Prog = Basename (argv[0]);
(void) setlocale (LC_ALL, "");