Commit 0b3b676c4864546f5be102450168f4174fd9a69e
Exists in
master
and in
2 other branches
Merge branch 'develop' into network_module
Showing
1 changed file
with
7 additions
and
2 deletions
Show diff stats
src/core/properties/boolean.c
| ... | ... | @@ -198,10 +198,15 @@ |
| 198 | 198 | }, |
| 199 | 199 | |
| 200 | 200 | { |
| 201 | - .name = "crlget", // Property name. | |
| 201 | + .name = "crl_download", // Property name. | |
| 202 | 202 | .description = N_( "Non zero if the download of CRL is enabled" ), // Property description. |
| 203 | 203 | .get = lib3270_ssl_get_crl_download, // Get value. |
| 204 | - .set = lib3270_ssl_set_crl_download // Set value. | |
| 204 | + .set = lib3270_ssl_set_crl_download, // Set value. | |
| 205 | +#if defined(SSL_ENABLE_CRL_CHECK) | |
| 206 | + .default_value = 1 | |
| 207 | +#else | |
| 208 | + .default_value = 0 | |
| 209 | +#endif | |
| 205 | 210 | }, |
| 206 | 211 | |
| 207 | 212 | { | ... | ... |