mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 19:37:48 +03:00
Better diagnostic message when the trusted section is missing
Fixes #59
This commit is contained in:
parent
76161c653e
commit
056fa3541b
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ sig_load(const char *sig_file, unsigned char global_sig[crypto_sign_BYTES],
|
|||
}
|
||||
trim(sig_s);
|
||||
if (fgets(trusted_comment, (int) trusted_comment_maxlen, fp) == NULL) {
|
||||
exit_err(sig_file);
|
||||
exit_msg("Trusted comment not present");
|
||||
}
|
||||
if (strncmp(trusted_comment, TRUSTED_COMMENT_PREFIX,
|
||||
(sizeof TRUSTED_COMMENT_PREFIX) - 1U) != 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue