1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

See ChangeLog: Tue Mar 7 18:45:31 CET 2000 Werner Koch

This commit is contained in:
Werner Koch 2000-03-07 17:43:06 +00:00
parent c8efcabec4
commit f818c5ea6b
12 changed files with 58 additions and 11 deletions

View file

@ -1,3 +1,7 @@
Tue Mar 7 18:45:31 CET 2000 Werner Koch <wk@gnupg.de>
* secmem.c (lock_pool): No more warning for QNX. By Sam Roberts.
2000-03-02 15:51:04 Werner Koch (wk@habibti.gnupg.de)
* ttyio.c (tty_print_utf8_string): Oops.

View file

@ -145,6 +145,12 @@ lock_pool( void *p, size_t n )
show_warning = 1;
}
#elif defined ( __QNX__ )
/* QNX does not page at all, so the whole secure memory stuff does
* not make much sense. However it is still of use because it
* wipes out the memory on a free().
* Therefore it is sufficient to suppress the warning
*/
#else
log_info("Please note that you don't have secure memory on this system\n");
#endif