aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2002-11-13 15:39:10 +0000
committerDavid Shaw <[email protected]>2002-11-13 15:39:10 +0000
commit116bef5e04974fdc293f0b1995e9da5e7bd5d1fc (patch)
tree9cd947b425d5c5afe9dc2404716496cfdcdfb06a
parent* keyedit.c (show_key_with_all_names_colon): Make --with-colons --edit (diff)
downloadgnupg-116bef5e04974fdc293f0b1995e9da5e7bd5d1fc.tar.gz
gnupg-116bef5e04974fdc293f0b1995e9da5e7bd5d1fc.zip
* secmem.c (lock_pool) [__CYGWIN__]: Don't print secmem warning. From
Werner on stable branch.
-rw-r--r--util/ChangeLog5
-rw-r--r--util/secmem.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/util/ChangeLog b/util/ChangeLog
index 8477bdc4f..3f4a58bac 100644
--- a/util/ChangeLog
+++ b/util/ChangeLog
@@ -1,3 +1,8 @@
+2002-11-13 David Shaw <[email protected]>
+
+ * secmem.c (lock_pool) [__CYGWIN__]: Don't print secmem warning.
+ From Werner on stable branch.
+
2002-11-09 Werner Koch <[email protected]>
* ttyio.c (TERMDEVICE): Removed.
diff --git a/util/secmem.c b/util/secmem.c
index 0a0931afc..681329618 100644
--- a/util/secmem.c
+++ b/util/secmem.c
@@ -181,7 +181,7 @@ lock_pool( void *p, size_t n )
* wipes out the memory on a free().
* Therefore it is sufficient to suppress the warning
*/
- #elif defined (HAVE_DOSISH_SYSTEM)
+ #elif defined (HAVE_DOSISH_SYSTEM) || defined (__CYGWIN__)
/* It does not make sense to print such a warning, given the fact that
* this whole Windows !@#$% and their user base are inherently insecure
*/