Fix ret code in udp_proxy.c

This commit is contained in:
Andres Amaya Garcia 2018-04-29 21:58:53 +01:00 committed by Simon Butcher
parent 12ab7a6884
commit 01e3d21350

View File

@ -37,10 +37,12 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <time.h> #include <time.h>
#define mbedtls_time time #define mbedtls_time time
#define mbedtls_time_t time_t #define mbedtls_time_t time_t
#define mbedtls_printf printf #define mbedtls_printf printf
#endif #define MBEDTLS_EXTI_SUCCESS EXIT_SUCCESS
#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
#endif /* MBEDTLS_PLATFORM_C */
#if !defined(MBEDTLS_NET_C) #if !defined(MBEDTLS_NET_C)
int main( void ) int main( void )
@ -468,7 +470,8 @@ int handle_message( const char *way,
int main( int argc, char *argv[] ) int main( int argc, char *argv[] )
{ {
int ret; int ret = 1;
int exit_code = MBEDTLS_EXIT_FAILURE;
mbedtls_net_context listen_fd, client_fd, server_fd; mbedtls_net_context listen_fd, client_fd, server_fd;
@ -591,10 +594,12 @@ accept:
} }
} }
exit_code = MBEDTLS_EXIT_SUCCESS;
exit: exit:
#ifdef MBEDTLS_ERROR_C #ifdef MBEDTLS_ERROR_C
if( ret != 0 ) if( exit_code != MBEDTLS_EXIT_SUCCESS )
{ {
char error_buf[100]; char error_buf[100];
mbedtls_strerror( ret, error_buf, 100 ); mbedtls_strerror( ret, error_buf, 100 );
@ -612,7 +617,7 @@ exit:
fflush( stdout ); getchar(); fflush( stdout ); getchar();
#endif #endif
return( ret != 0 ); return( exit_code );
} }
#endif /* MBEDTLS_NET_C */ #endif /* MBEDTLS_NET_C */