mirror of https://github.com/openssl/openssl.git
				
				
				
			Correct the no-dh and no-dsa fix
The condition wasn't quite right Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2702)
This commit is contained in:
		
							parent
							
								
									a0179d0afb
								
							
						
					
					
						commit
						e4a3d0f968
					
				|  | @ -60,7 +60,7 @@ my %conf_dependent_tests = ( | |||
|   "10-resumption.conf" => !$is_default_tls, | ||||
|   "11-dtls_resumption.conf" => !$is_default_dtls, | ||||
|   "19-mac-then-encrypt.conf" => !$is_default_tls, | ||||
|   "20-cert-select.conf" => !$is_default_tls && !$no_dh && !$no_dsa, | ||||
|   "20-cert-select.conf" => !$is_default_tls || $no_dh || $no_dsa, | ||||
| ); | ||||
| 
 | ||||
| # Add your test here if it should be skipped for some compile-time | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue