From 7c237a068515e1b5116f803cda4a090520df3247 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Wed, 31 Jan 2007 15:55:14 +0000 Subject: [PATCH] Add ca --crl-uri. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@20105 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hx509/hxtool.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/hx509/hxtool.c b/lib/hx509/hxtool.c index c6dfdcd1e..ef378271f 100644 --- a/lib/hx509/hxtool.c +++ b/lib/hx509/hxtool.c @@ -1518,6 +1518,13 @@ hxtool_ca(struct certificate_sign_options *opt, int argc, char **argv) hx509_err(context, 1, ret, "hx509_ca_tbs_set_subject"); } + if (opt->crl_uri_string) { + ret = hx509_ca_tbs_add_crl_dp_uri(context, tbs, + opt->crl_uri_string, NULL); + if (ret) + hx509_err(context, 1, ret, "hx509_ca_tbs_add_crl_dp_uri"); + } + eval_types(context, tbs, opt); if (opt->issue_ca_flag) {