1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-07-01 02:42:44 +02:00

* secmem.c (print_warn): Print a pointer to the FAQ.

This commit is contained in:
Werner Koch 2002-01-08 19:29:35 +00:00
parent fa236d517b
commit dfd091cf52
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-01-08 Werner Koch <wk@gnupg.org>
* secmem.c (print_warn): Print a pointer to the FAQ.
2002-01-05 Werner Koch <wk@gnupg.org>
* argparse.c (default_strusage): Set default copyright date to 2002.

View File

@ -83,8 +83,12 @@ static int suspend_warning;
static void
print_warn(void)
{
if( !no_warning )
log_info(_("Warning: using insecure memory!\n"));
if (!no_warning)
{
log_info(_("Warning: using insecure memory!\n"));
log_info(_("please see http://www.gnupg.org/faq.html "
"for more information\n"));
}
}