aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--util/ChangeLog4
-rw-r--r--util/secmem.c8
2 files changed, 10 insertions, 2 deletions
diff --git a/util/ChangeLog b/util/ChangeLog
index b12107f7b..606252b32 100644
--- a/util/ChangeLog
+++ b/util/ChangeLog
@@ -1,3 +1,7 @@
+2002-01-08 Werner Koch <[email protected]>
+
+ * secmem.c (print_warn): Print a pointer to the FAQ.
+
2002-01-05 Werner Koch <[email protected]>
* argparse.c (default_strusage): Set default copyright date to 2002.
diff --git a/util/secmem.c b/util/secmem.c
index c7fc597ee..c808dfeea 100644
--- a/util/secmem.c
+++ b/util/secmem.c
@@ -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"));
+ }
}