From 37ef16742ab6a8ba0c849c684c06f60e43608036 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Thu, 6 Oct 2016 01:00:42 +0200 Subject: Fixed NSSDatabase.create_request(). The NSSDatabase.create_request() has been modified to remove a superfluous argument when invoking certutil. --- base/common/python/pki/nssdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/common/python') diff --git a/base/common/python/pki/nssdb.py b/base/common/python/pki/nssdb.py index 736efcac3..c044ba1fb 100644 --- a/base/common/python/pki/nssdb.py +++ b/base/common/python/pki/nssdb.py @@ -237,7 +237,7 @@ class NSSDatabase(object): if basic_constraints_ext: - cmd.extend(['-2', hash_alg]) + cmd.extend(['-2']) # Is this a CA certificate [y/N]? if basic_constraints_ext['ca']: -- cgit