mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-03 20:22:59 -05:00 
			
		
		
		
	Fix ret code in req_app.c
This commit is contained in:
		
							parent
							
								
									898b208929
								
							
						
					
					
						commit
						57a0c9b62c
					
				@ -29,8 +29,11 @@
 | 
			
		||||
#include "mbedtls/platform.h"
 | 
			
		||||
#else
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
#define mbedtls_printf     printf
 | 
			
		||||
#endif
 | 
			
		||||
#include <stdlib.h>
 | 
			
		||||
#define mbedtls_printf          printf
 | 
			
		||||
#define MBEDTLS_EXTI_SUCCESS    EXIT_SUCCESS
 | 
			
		||||
#define MBEDTLS_EXIT_FAILURE    EXIT_FAILURE
 | 
			
		||||
#endif /* MBEDTLS_PLATFORM_C */
 | 
			
		||||
 | 
			
		||||
#if !defined(MBEDTLS_BIGNUM_C) || !defined(MBEDTLS_RSA_C) ||  \
 | 
			
		||||
    !defined(MBEDTLS_X509_CSR_PARSE_C) || !defined(MBEDTLS_FS_IO)
 | 
			
		||||
@ -67,7 +70,8 @@ struct options
 | 
			
		||||
 | 
			
		||||
int main( int argc, char *argv[] )
 | 
			
		||||
{
 | 
			
		||||
    int ret = 0;
 | 
			
		||||
    int ret = 1;
 | 
			
		||||
    int exit_code = MBEDTLS_EXIT_FAILURE;
 | 
			
		||||
    unsigned char buf[100000];
 | 
			
		||||
    mbedtls_x509_csr csr;
 | 
			
		||||
    int i;
 | 
			
		||||
@ -131,6 +135,8 @@ int main( int argc, char *argv[] )
 | 
			
		||||
 | 
			
		||||
    mbedtls_printf( "%s\n", buf );
 | 
			
		||||
 | 
			
		||||
    exit_code = MBEDTLS_EXIT_SUCCESS;
 | 
			
		||||
 | 
			
		||||
exit:
 | 
			
		||||
    mbedtls_x509_csr_free( &csr );
 | 
			
		||||
 | 
			
		||||
@ -139,7 +145,7 @@ exit:
 | 
			
		||||
    fflush( stdout ); getchar();
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
    return( ret );
 | 
			
		||||
    return( exit_code );
 | 
			
		||||
}
 | 
			
		||||
#endif /* MBEDTLS_BIGNUM_C && MBEDTLS_RSA_C && MBEDTLS_X509_CSR_PARSE_C &&
 | 
			
		||||
          MBEDTLS_FS_IO */
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user