1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

release 0.2.3

This commit is contained in:
Werner Koch 1998-02-09 17:43:42 +00:00
parent b18d1107ec
commit d6fa02add6
41 changed files with 464 additions and 110 deletions

View file

@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in
INCLUDES = -I.. -I$(top_srcdir)/include
INCLUDES = -I$(top_srcdir)/include
noinst_LIBRARIES = libutil.a

View file

@ -86,7 +86,7 @@ POSUB = @POSUB@
RANLIB = @RANLIB@
VERSION = @VERSION@
INCLUDES = -I.. -I$(top_srcdir)/include
INCLUDES = -I$(top_srcdir)/include
noinst_LIBRARIES = libutil.a

View file

@ -33,6 +33,7 @@
#include "types.h"
#include "memory.h"
#include "util.h"
#include "i18n.h"
#define DEFAULT_POOLSIZE 8196
@ -79,8 +80,9 @@ lock_pool( void *p, size_t n )
}
if( err ) {
log_error("can´t lock memory: %s\n", strerror(err));
log_info("Warning: using insecure memory!\n");
if( errno != EPERM )
log_error("can´t lock memory: %s\n", strerror(err));
log_info(_("Warning: using insecure memory!\n"));
}
#else