mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Print 'empty file' warning only with --verbose.
This commit is contained in:
parent
23ad4bd73b
commit
750990401c
3 changed files with 9 additions and 3 deletions
|
@ -286,7 +286,7 @@ encode_simple( const char *filename, int mode, int use_seskey )
|
|||
int overflow;
|
||||
|
||||
if ( !(tmpsize = iobuf_get_filelength(inp, &overflow))
|
||||
&& !overflow )
|
||||
&& !overflow && opt.verbose)
|
||||
log_info(_("WARNING: `%s' is an empty file\n"), filename );
|
||||
/* We can't encode the length of very large files because
|
||||
OpenPGP uses only 32 bit for file sizes. So if the the
|
||||
|
@ -564,7 +564,7 @@ encode_crypt( const char *filename, STRLIST remusr, int use_symkey )
|
|||
int overflow;
|
||||
|
||||
if ( !(tmpsize = iobuf_get_filelength(inp, &overflow))
|
||||
&& !overflow )
|
||||
&& !overflow && opt.verbose)
|
||||
log_info(_("WARNING: `%s' is an empty file\n"), filename );
|
||||
/* We can't encode the length of very large files because
|
||||
OpenPGP uses only 32 bit for file sizes. So if the the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue