aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--VERSION2
-rw-r--r--util/ChangeLog4
-rw-r--r--util/secmem.c2
3 files changed, 7 insertions, 1 deletions
diff --git a/VERSION b/VERSION
index f37fc79b4..991affee6 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.0.1-ePit-1
+1.0.1-ePit-2
diff --git a/util/ChangeLog b/util/ChangeLog
index c6d64aa6a..1512724ce 100644
--- a/util/ChangeLog
+++ b/util/ChangeLog
@@ -1,3 +1,7 @@
+2000-05-31 09:54:46 Werner Koch ([email protected])
+
+ * secmem.c: Suppress the no secmem warbing for DOSish systems.
+
Tue May 30 16:37:55 CEST 2000 Werner Koch <[email protected]>
* iobuf.c (iobuf_cancel): Fix for MSDOS.
diff --git a/util/secmem.c b/util/secmem.c
index 54836cbcf..4da21d47d 100644
--- a/util/secmem.c
+++ b/util/secmem.c
@@ -151,6 +151,8 @@ 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)
+ #warning We suppress the warning for now
#else
log_info("Please note that you don't have secure memory on this system\n");
#endif