mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-06 12:27:40 +03:00
Return 1 if verification/password check failed, 2 for other errors
Suggested by @anvilstriker
This commit is contained in:
parent
a88a7ececf
commit
9546c80674
2 changed files with 3 additions and 3 deletions
|
@ -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 *
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue