From 196e93b65c852983608ac02fd6421f297b133766 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 17 Jul 2006 17:15:52 +0000 Subject: [PATCH] Self-signed cert now uses a wildcard name --- webcit/crypto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webcit/crypto.c b/webcit/crypto.c index cb6e22a20..b7d36faf9 100644 --- a/webcit/crypto.c +++ b/webcit/crypto.c @@ -197,13 +197,13 @@ void init_ssl(void) */ X509_NAME_add_entry_by_txt(name, "O", - MBSTRING_ASC, "FIXME.FIXME.org", -1, -1, 0); + MBSTRING_ASC, "Organization name", -1, -1, 0); X509_NAME_add_entry_by_txt(name, "OU", MBSTRING_ASC, "Citadel server", -1, -1, 0); X509_NAME_add_entry_by_txt(name, "CN", - MBSTRING_ASC, "FIXME.FIXME.org", -1, -1, 0); + MBSTRING_ASC, "*", -1, -1, 0); X509_REQ_set_subject_name(req, name); -- 2.30.2