Better diagnostic message when the trusted section is missing

Fixes #59
This commit is contained in:
Frank Denis 2019-07-23 07:47:50 +02:00
parent 76161c653e
commit 056fa3541b

View file

@ -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) {