Skip to content

Commit

Permalink
Use ifdef to avoid undef warning
Browse files Browse the repository at this point in the history
  • Loading branch information
segiddins authored Jul 3, 2024
1 parent 69c57f6 commit 063ebb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/openssl/ossl_x509store.c
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ ossl_x509store_set_time(VALUE self, VALUE time)
X509_VERIFY_PARAM *param;

GetX509Store(self, store);
#if HAVE_X509_STORE_GET0_PARAM
#ifdef HAVE_X509_STORE_GET0_PARAM
param = X509_STORE_get0_param(store);
#else
param = store->param;
Expand Down

0 comments on commit 063ebb0

Please sign in to comment.