summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-08-01 14:08:37 +0000
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-08-01 14:08:37 +0000
commit31dd618a82d7fb86ec0ebb2b18a8ee372607761f (patch)
treefb51e40f52ff734583d4411ca21d5fc28d24f1e2
parent17d3fb250d96ca25e649f2654f6dd820e8429786 (diff)
fix typo on name of an xmlsec function
-rw-r--r--lasso/xml/tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lasso/xml/tools.c b/lasso/xml/tools.c
index f94f7b5a..627d3536 100644
--- a/lasso/xml/tools.c
+++ b/lasso/xml/tools.c
@@ -268,7 +268,7 @@ lasso_get_public_key_from_pem_cert_file(const char *pem_cert_file)
xmlSecKeyPtr
lasso_get_public_key_from_private_key_file(const char *private_key_file)
{
- return XmlSecCryptoAppKeyLoad(private_key_file,
+ return xmlSecCryptoAppKeyLoad(private_key_file,
xmlSecKeyDataFormatPem, NULL, NULL, NULL);
}