diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2005-08-25 07:15:09 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2005-08-25 07:15:09 +0000 |
| commit | 90a540a3825f24f5a021d85c0c03b7930e99c7e3 (patch) | |
| tree | e7bf6725fcd919952b06709fc008468412ceb990 | |
| parent | 02bddf8b8569aa0ba5bae119b907c72637ca480e (diff) | |
| download | lasso-90a540a3825f24f5a021d85c0c03b7930e99c7e3.tar.gz lasso-90a540a3825f24f5a021d85c0c03b7930e99c7e3.tar.xz lasso-90a540a3825f24f5a021d85c0c03b7930e99c7e3.zip | |
include xmlsec errors.h header to get function declaration; a return in the
middle of load_public_key got a FALSE argument.
| -rw-r--r-- | lasso/id-ff/provider.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lasso/id-ff/provider.c b/lasso/id-ff/provider.c index 04abe1f9..f62a2bed 100644 --- a/lasso/id-ff/provider.c +++ b/lasso/id-ff/provider.c @@ -26,6 +26,7 @@ #include <libxml/xpathInternals.h> #include <xmlsec/base64.h> +#include <xmlsec/errors.h> #include <xmlsec/xmldsig.h> #include <xmlsec/xmltree.h> @@ -749,7 +750,7 @@ lasso_provider_load_public_key(LassoProvider *provider) t = t->next; } if (t == NULL) - return; + return FALSE; b64_value = xmlNodeGetContent(t); length = strlen((char*)b64_value); |
