mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 19:37:48 +03:00
Suggest using -H for files > 1 Gb
This commit is contained in:
parent
6e1023d207
commit
a3f4d7b794
1 changed files with 2 additions and 2 deletions
|
@ -103,8 +103,8 @@ message_load(size_t *message_len, const char *message_file, int hashed)
|
|||
(message_len_ = ftello(fp)) == (off_t) -1) {
|
||||
exit_err(message_file);
|
||||
}
|
||||
if (message_len_ > (off_t) 1L << 30) {
|
||||
exit_msg("Data has to be smaller than 1 Gb");
|
||||
if (hashed == 0 && message_len_ > (off_t) 1L << 30) {
|
||||
exit_msg("Data has to be smaller than 1 Gb. Or use the -H option.");
|
||||
}
|
||||
if ((uintmax_t) message_len_ > (uintmax_t) SIZE_MAX ||
|
||||
message_len_ < (off_t) 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue