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

Move idea_cipher_warn to misc.c so gpgv.c doesn't need a stub

Remove get_temp_dir (it's in exec.c now)
Allow --delete-key (now --delete-keys, though --delete-key still works) to
delete multiple keys in one go.  This applies to
--delete-secret-key(s) and --delete-secret-and-public-key(s) as well
This commit is contained in:
David Shaw 2002-01-09 19:59:26 +00:00
parent 0bd41cc2e5
commit bd5517b9e2
6 changed files with 77 additions and 95 deletions

View file

@ -423,3 +423,18 @@ check_permissions(const char *path,int extension,int checkonly)
return 0;
}
/* Special warning for the IDEA cipher */
void
idea_cipher_warn(int show)
{
static int warned=0;
if(!warned || show)
{
log_info(_("the IDEA cipher plugin is not present\n"));
log_info(_("please see http://www.gnupg.org/why-not-idea.html "
"for more information\n"));
warned=1;
}
}