diff --git a/include/ulib/utility/services.h b/include/ulib/utility/services.h index e787382a..b0b3defd 100644 --- a/include/ulib/utility/services.h +++ b/include/ulib/utility/services.h @@ -27,12 +27,15 @@ # include # include typedef int (*verify_cb)(int,X509_STORE_CTX*); /* error callback */ -# ifndef X509_V_FLAG_CRL_CHECK -# define X509_V_FLAG_CRL_CHECK 0x4 -# endif -# ifndef X509_V_FLAG_CRL_CHECK_ALL -# define X509_V_FLAG_CRL_CHECK_ALL 0x8 -# endif +#ifdef DISABLE_CRL +# define U_STORE_FLAGS 0 +# else +# ifndef X509_V_FLAG_CRL_CHECK +# define X509_V_FLAG_CRL_CHECK 0x4 +# endif +# ifndef X509_V_FLAG_CRL_CHECK_ALL +# define X509_V_FLAG_CRL_CHECK_ALL 0x8 +# endif # define U_STORE_FLAGS (X509_V_FLAG_CRL_CHECK | X509_V_FLAG_CRL_CHECK_ALL) #endif diff --git a/tests/examples/TSA/tsaserial b/tests/examples/TSA/tsaserial index 6feef0f2..64bbc892 100644 --- a/tests/examples/TSA/tsaserial +++ b/tests/examples/TSA/tsaserial @@ -1 +1 @@ -0620 +0625