From 9f145de4dcfbbd2ae8649f4d9e0627e9f018f91b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Mon, 4 May 2015 15:03:50 +0200 Subject: [PATCH] Fix merge issue from 1.3 branch --- library/entropy_poll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/entropy_poll.c b/library/entropy_poll.c index aff52ba74..ae3929a42 100644 --- a/library/entropy_poll.c +++ b/library/entropy_poll.c @@ -145,7 +145,7 @@ int mbedtls_platform_entropy_poll( void *data, int ret; if( ( ret = getrandom_wrapper( output, len, 0 ) ) < 0 ) - return( POLARSSL_ERR_ENTROPY_SOURCE_FAILED ); + return( MBEDTLS_ERR_ENTROPY_SOURCE_FAILED ); *olen = ret; return( 0 );