diff options
Diffstat (limited to 'python/xml/py_xml.c')
-rw-r--r-- | python/xml/py_xml.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/xml/py_xml.c b/python/xml/py_xml.c index 83636187..54c9ee65 100644 --- a/python/xml/py_xml.c +++ b/python/xml/py_xml.c @@ -207,7 +207,8 @@ PyObject *node_verify_signature(PyObject *self, PyObject *args) { else return NULL; ret = lasso_node_verify_signature(LassoNode_get(node_obj), - certificate_file); + certificate_file, NULL); + /* FIXME generate an exception here */ return (int_wrap(ret)); } |