summaryrefslogtreecommitdiffstats
path: root/lasso/xml
diff options
context:
space:
mode:
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 ec6a76de..0037b831 100644
--- a/lasso/xml/errors.c
+++ b/lasso/xml/errors.c
@@ -93,6 +93,8 @@ lasso_strerror(int error_code)
return "Identity not found";
case LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND:
return "Federation not found";
+ case LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND:
+ return "Name identifier not found";
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 45d335d6..19d11fb2 100644
--- a/lasso/xml/errors.h
+++ b/lasso/xml/errors.h
@@ -68,6 +68,7 @@
#define LASSO_PROFILE_ERROR_UNKNOWN_PROFILE_URL -410
#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
/* functions/methods parameters checking */
#define LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ -501