Self-signed cert now uses a wildcard name
authorArt Cancro <ajc@citadel.org>
Mon, 17 Jul 2006 17:15:52 +0000 (17:15 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 17 Jul 2006 17:15:52 +0000 (17:15 +0000)
webcit/crypto.c

index cb6e22a20d9336599090c766a07a013095518a44..b7d36faf9ef94c08ec0d6d82402f191bae8c7714 100644 (file)
@@ -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);