aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rpkid/rpki/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpkid/rpki/config.py b/rpkid/rpki/config.py
index 1ade720b..8957315f 100644
--- a/rpkid/rpki/config.py
+++ b/rpkid/rpki/config.py
@@ -269,12 +269,12 @@ class parser(object):
pass
try:
- rpki.x509.XML_CMS_object.check_inbound_schema = self.get("check_inbound_schema")
+ rpki.x509.XML_CMS_object.check_inbound_schema = self.getboolean("check_inbound_schema")
except ConfigParser.NoOptionError:
pass
try:
- rpki.x509.XML_CMS_object.check_outbound_schema = self.get("check_outbound_schema")
+ rpki.x509.XML_CMS_object.check_outbound_schema = self.getboolean("check_outbound_schema")
except ConfigParser.NoOptionError:
pass