diff options
author | Sebastian Benoit <benno@cvs.openbsd.org> | 2019-11-29 17:54:20 +0000 |
---|---|---|
committer | Sebastian Benoit <benno@cvs.openbsd.org> | 2019-11-29 17:54:20 +0000 |
commit | 61d7a5098a32f1499633764b1618b03c344d1fc1 (patch) | |
tree | 4f374ca410c539538c08d3a158a2c793cf911edf | |
parent | d50b796751661e8674e8ded958a55011b3514568 (diff) |
... and fix the compile.
-rw-r--r-- | usr.sbin/rpki-client/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpki-client/main.c b/usr.sbin/rpki-client/main.c index e72053c5bb6..fad6db8cf58 100644 --- a/usr.sbin/rpki-client/main.c +++ b/usr.sbin/rpki-client/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.44 2019/11/29 17:52:59 benno Exp $ */ +/* $OpenBSD: main.c,v 1.45 2019/11/29 17:54:19 benno Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -842,7 +842,7 @@ proc_parser_roa(struct entity *entp, cryptoerrx("X509_STORE_CTX_get0_param"); fl = X509_VERIFY_PARAM_get_flags(param); nfl = X509_V_FLAG_IGNORE_CRITICAL | X509_V_FLAG_CRL_CHECK | - X509_V_FLAG_CRL_CHECK_ALL + X509_V_FLAG_CRL_CHECK_ALL; if (!X509_VERIFY_PARAM_set_flags(param, fl | nfl)) cryptoerrx("X509_VERIFY_PARAM_set_flags"); X509_STORE_CTX_set0_crls(ctx, crls); |