summaryrefslogtreecommitdiff
path: root/tests/rng-fork.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2014-01-26 11:21:34 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2014-01-26 11:21:34 +0100
commitdeee295ac5d27974afa54e10be2cfa227e26eeae (patch)
treef0e9c50fc56b031f3611d7a525ec9bf0c159d5b3 /tests/rng-fork.c
parent012c88e7dbdbafd50a3c2767aa938f0aab6e98bb (diff)
downloadgnutls-deee295ac5d27974afa54e10be2cfa227e26eeae.tar.gz
increased the number of bytes requested by the RNG
Diffstat (limited to 'tests/rng-fork.c')
-rw-r--r--tests/rng-fork.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rng-fork.c b/tests/rng-fork.c
index f0b32ce509..ba9178eaf1 100644
--- a/tests/rng-fork.c
+++ b/tests/rng-fork.c
@@ -50,8 +50,8 @@ static void dump(const char *name, unsigned char *buf, int buf_size)
void doit(void)
{
- unsigned char buf1[32];
- unsigned char buf2[32];
+ unsigned char buf1[64];
+ unsigned char buf2[64];
pid_t pid;
int ret;
FILE *fp;