Return 1 if verification/password check failed, 2 for other errors

Suggested by @anvilstriker
This commit is contained in:
Frank Denis 2015-10-25 14:20:02 +01:00
parent a88a7ececf
commit 9546c80674
2 changed files with 3 additions and 3 deletions

View file

@ -42,14 +42,14 @@ void
exit_err(const char *msg)
{
perror(msg == NULL ? "" : msg);
exit(1);
exit(2);
}
void
exit_msg(const char *msg)
{
fprintf(stderr, "%s\n", msg);
exit(1);
exit(2);
}
void *