aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2012-02-16 04:39:55 +0000
committerRob Austein <sra@hactrn.net>2012-02-16 04:39:55 +0000
commitc2168c575cfd0cc035e75ee71d3c31c227c52527 (patch)
treee78329f2e99693406eaf574412c8f0d482c787ef
parent903df503a0f54fbe4bf2f4dc61fca992e9810fca (diff)
Changed BPKI certification model for rootd with new IRDB means that
rpkid no longer expects to see a BPKI CRL in CMS messages from rootd, so fix rootd to conform to rpkid's expectation. svn path=/branches/tk161/; revision=4344
-rw-r--r--rpkid/rpki/rootd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/rootd.py b/rpkid/rpki/rootd.py
index 44e6af83..8f3e6264 100644
--- a/rpkid/rpki/rootd.py
+++ b/rpkid/rpki/rootd.py
@@ -244,7 +244,7 @@ class main(object):
return cb(400, reason = "Could not process PDU: %s" % e)
def done(r_msg):
- cb(200, body = cms_msg().wrap(r_msg, self.rootd_bpki_key, self.rootd_bpki_cert, self.rootd_bpki_crl))
+ cb(200, body = cms_msg().wrap(r_msg, self.rootd_bpki_key, self.rootd_bpki_cert))
try:
q_msg.serve_top_level(None, done)