Commit bbd331b3406163f6a58493b3b480dc69c811ec8d
1 parent
7393c9b2
Exists in
master
and in
2 other branches
Fixing "crl_download" property.
Showing
1 changed file
with
6 additions
and
1 deletions
Show diff stats
src/core/properties/boolean.c
... | ... | @@ -201,7 +201,12 @@ |
201 | 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 | { | ... | ... |