From 2fc272247eb58dc907901c44f734926bb6fead94 Mon Sep 17 00:00:00 2001 From: Christian Hohnstaedt Date: Thu, 16 Aug 2018 18:41:49 +0200 Subject: [PATCH] Close #56: Duplicate Serials after Upgrade 2.1.0 Fix default length of random serial from 8 to 64 bit. --- lib/settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/settings.cpp b/lib/settings.cpp index d8122088..a73806f3 100644 --- a/lib/settings.cpp +++ b/lib/settings.cpp @@ -33,7 +33,7 @@ settings::settings() defaul["default_hash"] = hashBox::getDefault(); defaul["ical_expiry"] = "1W"; defaul["cert_expiry"] = "80%"; - defaul["serial_len"] = "8"; + defaul["serial_len"] = "64"; clear(); }