aboutsummaryrefslogtreecommitdiff
path: root/rpkid/cronjob.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/cronjob.py
parente11002b6beffdbd9b847038693d666f01cc1bc9e (diff)
Clean up unnecessarily complicated trust anchor code
svn path=/rpkid/cronjob.py; revision=1677
Diffstat (limited to 'rpkid/cronjob.py')
-rw-r--r--rpkid/cronjob.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/cronjob.py b/rpkid/cronjob.py
index 65056c40..a2ec17a1 100644
--- a/rpkid/cronjob.py
+++ b/rpkid/cronjob.py
@@ -42,6 +42,6 @@ cfg = rpki.config.parser(cfg_file, "cronjob")
print rpki.https.client(client_key = rpki.x509.RSA(Auto_file = cfg.get("https-key")),
client_certs = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-cert")),
- server_ta = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-ta")),
+ server_ta = rpki.x509.X509(Auto_file = cfg.get("https-ta")),
url = cfg.get("https-url"),
msg = "Please run cron now.")