summaryrefslogtreecommitdiffstats
path: root/lasso/xml
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2004-12-15 11:07:34 +0000
committerFrederic Peters <fpeters@entrouvert.com>2004-12-15 11:07:34 +0000
commitbe7a74a3482ca07624206c9fde54948c8be1d238 (patch)
tree1e30655ea8e4570ca676ad1188e314d59c3a093f /lasso/xml
parent3dc8389da176bc6e7bb66ea1eac2db02e68741ea (diff)
downloadlasso-be7a74a3482ca07624206c9fde54948c8be1d238.tar.gz
lasso-be7a74a3482ca07624206c9fde54948c8be1d238.tar.xz
lasso-be7a74a3482ca07624206c9fde54948c8be1d238.zip
added new standard error code LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED
Diffstat (limited to 'lasso/xml')
-rw-r--r--lasso/xml/errors.c2
-rw-r--r--lasso/xml/errors.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/lasso/xml/errors.c b/lasso/xml/errors.c
index 0037b831..e43a7974 100644
--- a/lasso/xml/errors.c
+++ b/lasso/xml/errors.c
@@ -95,6 +95,8 @@ lasso_strerror(int error_code)
return "Federation not found";
case LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND:
return "Name identifier not found";
+ case LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED:
+ return "Error building request QUERY url";
case LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ:
return "An object type provided as parameter "\
diff --git a/lasso/xml/errors.h b/lasso/xml/errors.h
index 19d11fb2..d7e40b36 100644
--- a/lasso/xml/errors.h
+++ b/lasso/xml/errors.h
@@ -69,6 +69,7 @@
#define LASSO_PROFILE_ERROR_IDENTITY_NOT_FOUND -411
#define LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND -412
#define LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND -413
+#define LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED -414
/* functions/methods parameters checking */
#define LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ -501