1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

Minor cleanups

This commit is contained in:
Werner Koch 2001-12-22 13:12:24 +00:00
parent ab430c4b24
commit ccb1f8c175
5 changed files with 28 additions and 18 deletions

View file

@ -86,11 +86,12 @@ encode_simple( const char *filename, int mode )
memset( &tfx, 0, sizeof tfx);
init_packet(&pkt);
if (is_file_compressed(filename, &rc)) {
if (opt.verbose)
log_info("`%s' already compressed\n", filename);
do_compress = 0;
}
if (is_file_compressed(filename, &rc))
{
if (opt.verbose)
log_info(_("`%s' already compressed\n"), filename);
do_compress = 0;
}
if (rc)
return rc;
@ -284,15 +285,17 @@ encode_crypt( const char *filename, STRLIST remusr )
}
}
if (is_file_compressed(filename, &rc2)) {
if (opt.verbose)
log_info("`%s' already compressed\n", filename);
do_compress = 0;
}
if (rc2) {
rc = rc2;
goto leave;
}
if (is_file_compressed(filename, &rc2))
{
if (opt.verbose)
log_info(_("`%s' already compressed\n"), filename);
do_compress = 0;
}
if (rc2)
{
rc = rc2;
goto leave;
}
/* prepare iobufs */
if( !(inp = iobuf_open(filename)) ) {