aboutsummaryrefslogtreecommitdiff
path: root/rpkid/irdbd.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2008-04-18 23:39:55 +0000
committerRob Austein <sra@hactrn.net>2008-04-18 23:39:55 +0000
commita0be939602e58f77d99d09acfc12743b7ff5146b (patch)
treefa0433fa95dc0f4a460ab4e1eb887d7b13737ffa /rpkid/irdbd.py
parente11002b6beffdbd9b847038693d666f01cc1bc9e (diff)
Clean up unnecessarily complicated trust anchor code
svn path=/rpkid/cronjob.py; revision=1677
Diffstat (limited to 'rpkid/irdbd.py')
-rwxr-xr-xrpkid/irdbd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/irdbd.py b/rpkid/irdbd.py
index 5b8c72a3..09b1685e 100755
--- a/rpkid/irdbd.py
+++ b/rpkid/irdbd.py
@@ -126,7 +126,7 @@ assert u.scheme in ("", "https") and \
rpki.https.server(server_key = rpki.x509.RSA(Auto_file = cfg.get("https-key")),
server_certs = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-cert")),
- client_ta = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-ta")),
+ client_ta = rpki.x509.X509(Auto_file = cfg.get("https-ta")),
host = u.hostname or "localhost",
port = u.port or 443,
handlers = ((u.path, handler),))