mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-03 20:22:59 -05:00 
			
		
		
		
	Remove misleading and redundant guard around restartable ECC field
`MBEDTLS_SSL__ECP_RESTARTABLE` is only defined if `MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED` is set, which requires `MBEDTLS_X509_PARSE_C` to be set (this is checked in `check_config.`). The additional `MBEDTLS_X509_PARSE_C` guard around the `ecrs_peer_cert` field is therefore not necessary; moreover, it's misleading, because it hasn't been used consistently throughout the code.
This commit is contained in:
		
							parent
							
								
									545ced45f7
								
							
						
					
					
						commit
						1aed7779ec
					
				@ -331,9 +331,7 @@ struct mbedtls_ssl_handshake_params
 | 
				
			|||||||
        ssl_ecrs_cke_ecdh_calc_secret,  /*!< ClientKeyExchange: ECDH step 2 */
 | 
					        ssl_ecrs_cke_ecdh_calc_secret,  /*!< ClientKeyExchange: ECDH step 2 */
 | 
				
			||||||
        ssl_ecrs_crt_vrfy_sign,         /*!< CertificateVerify: pk_sign()   */
 | 
					        ssl_ecrs_crt_vrfy_sign,         /*!< CertificateVerify: pk_sign()   */
 | 
				
			||||||
    } ecrs_state;                       /*!< current (or last) operation    */
 | 
					    } ecrs_state;                       /*!< current (or last) operation    */
 | 
				
			||||||
#if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					 | 
				
			||||||
    mbedtls_x509_crt *ecrs_peer_cert;        /*!< The peer's CRT chain.     */
 | 
					    mbedtls_x509_crt *ecrs_peer_cert;        /*!< The peer's CRT chain.     */
 | 
				
			||||||
#endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					 | 
				
			||||||
    size_t ecrs_n;                      /*!< place for saving a length      */
 | 
					    size_t ecrs_n;                      /*!< place for saving a length      */
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#if defined(MBEDTLS_X509_CRT_PARSE_C) && \
 | 
					#if defined(MBEDTLS_X509_CRT_PARSE_C) && \
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user