mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-04 04:32:24 -05:00 
			
		
		
		
	Don't split error code description across multiple lines
This commit is contained in:
		
							parent
							
								
									86ffd80456
								
							
						
					
					
						commit
						1434a365a6
					
				@ -48,8 +48,7 @@
 | 
				
			|||||||
#define MBEDTLS_ERR_RSA_VERIFY_FAILED                     -0x4380  /**< The PKCS#1 verification failed. */
 | 
					#define MBEDTLS_ERR_RSA_VERIFY_FAILED                     -0x4380  /**< The PKCS#1 verification failed. */
 | 
				
			||||||
#define MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE                  -0x4400  /**< The output buffer for decryption is not large enough. */
 | 
					#define MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE                  -0x4400  /**< The output buffer for decryption is not large enough. */
 | 
				
			||||||
#define MBEDTLS_ERR_RSA_RNG_FAILED                        -0x4480  /**< The random generator failed to generate non-zeros. */
 | 
					#define MBEDTLS_ERR_RSA_RNG_FAILED                        -0x4480  /**< The random generator failed to generate non-zeros. */
 | 
				
			||||||
#define MBEDTLS_ERR_RSA_UNSUPPORTED_OPERATION             -0x4500  /**< The implementation doesn't offer the requested operation,
 | 
					#define MBEDTLS_ERR_RSA_UNSUPPORTED_OPERATION             -0x4500  /**< The implementation doesn't offer the requested operation, e.g. because of security violations or lack of functionality */
 | 
				
			||||||
                                                                        e.g. because of security violations or lack of functionality */
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
 * RSA constants
 | 
					 * RSA constants
 | 
				
			||||||
 | 
				
			|||||||
@ -332,8 +332,7 @@ void mbedtls_strerror( int ret, char *buf, size_t buflen )
 | 
				
			|||||||
        if( use_ret == -(MBEDTLS_ERR_RSA_RNG_FAILED) )
 | 
					        if( use_ret == -(MBEDTLS_ERR_RSA_RNG_FAILED) )
 | 
				
			||||||
            mbedtls_snprintf( buf, buflen, "RSA - The random generator failed to generate non-zeros" );
 | 
					            mbedtls_snprintf( buf, buflen, "RSA - The random generator failed to generate non-zeros" );
 | 
				
			||||||
        if( use_ret == -(MBEDTLS_ERR_RSA_UNSUPPORTED_OPERATION) )
 | 
					        if( use_ret == -(MBEDTLS_ERR_RSA_UNSUPPORTED_OPERATION) )
 | 
				
			||||||
            mbedtls_snprintf( buf, buflen, "RSA - The implementation doesn't offer the requested operation, "\
 | 
					            mbedtls_snprintf( buf, buflen, "RSA - The implementation doesn't offer the requested operation, e.g. because of security violations or lack of functionality" );
 | 
				
			||||||
                                            "e.g. because of security violations or lack of functionality" );
 | 
					 | 
				
			||||||
#endif /* MBEDTLS_RSA_C */
 | 
					#endif /* MBEDTLS_RSA_C */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if defined(MBEDTLS_SSL_TLS_C)
 | 
					#if defined(MBEDTLS_SSL_TLS_C)
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user