Harmonize error messages and add the prototypes for whoami(), members(), and usage().
This commit is contained in:
parent
aa035f9853
commit
8f3ee46325
@ -70,6 +70,9 @@ static int exclusive = 0;
|
||||
static char *Prog;
|
||||
static bool group_locked = false;
|
||||
|
||||
static char *whoami (void);
|
||||
static void members (char **members);
|
||||
static void usage (void);
|
||||
static void process_flags (int argc, char **argv);
|
||||
static void check_perms (void);
|
||||
static void fail_exit (int code);
|
||||
@ -288,14 +291,12 @@ int main (int argc, char **argv)
|
||||
}
|
||||
|
||||
if (!gr_close ()) {
|
||||
fputs (_("Cannot close group file\n"), stderr);
|
||||
fprintf (stderr, _("%s: unable to close group file\n"), Prog);
|
||||
fail_exit (EXIT_GROUP_FILE);
|
||||
}
|
||||
|
||||
if (gr_unlock () == 0) {
|
||||
fprintf (stderr,
|
||||
_("%s: unable to unlock group file\n"),
|
||||
Prog);
|
||||
fprintf (stderr, _("%s: unable to unlock group file\n"), Prog);
|
||||
}
|
||||
|
||||
exit (EXIT_SUCCESS);
|
||||
|
Loading…
Reference in New Issue
Block a user