1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-03-20 21:29:58 +01:00

* rndlinux.c, rndegd.c, rndunix.c (func_table): Made func a

function pointer.  Note that we still need to change the module
interface to cope with data vs function pointer problems.  Hmmm,
even dlsym has a problem with this.
This commit is contained in:
Werner Koch 2002-04-18 18:41:27 +00:00
parent adc8de23d1
commit 30c8d23aff
4 changed files with 13 additions and 6 deletions

View File

@ -1,3 +1,10 @@
2002-04-18 Werner Koch <wk@gnupg.org>
* rndlinux.c, rndegd.c, rndunix.c (func_table): Made func a
function pointer. Note that we still need to change the module
interface to cope with data vs function pointer problems. Hmmm,
even dlsym has a problem with this.
2002-04-10 David Shaw <dshaw@jabberwocky.com>
* cipher.c (setup_cipher_table, cipher_open, cipher_encrypt,

View File

@ -215,9 +215,9 @@ const char * const gnupgext_version = "RNDEGD ($Revision$)";
static struct {
int class;
int version;
void *func;
int (*func)(void);
} func_table[] = {
{ 40, 1, gather_random },
{ 40, 1, (int (*)(void))gather_random },
};

View File

@ -183,9 +183,9 @@ const char * const gnupgext_version = "RNDLINUX ($Revision$)";
static struct {
int class;
int version;
void *func;
int (*func)(void);
} func_table[] = {
{ 40, 1, gather_random },
{ 40, 1, (int (*)(void))gather_random },
};

View File

@ -857,9 +857,9 @@ const char * const gnupgext_version = "RNDUNIX ($Revision$)";
static struct {
int class;
int version;
void *func;
int (*func)(void);
} func_table[] = {
{ 40, 1, gather_random },
{ 40, 1, (int (*)(void))gather_random },
};
/****************