summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lasso/xml/errors.c4
-rw-r--r--lasso/xml/errors.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/lasso/xml/errors.c b/lasso/xml/errors.c
index 75aa4574..34fd0003 100644
--- a/lasso/xml/errors.c
+++ b/lasso/xml/errors.c
@@ -66,8 +66,8 @@ lasso_strerror(int error_code)
case LASSO_SERVER_ERROR_PROVIDER_NOTFOUND:
return "Failed to get LassoProvider object with providerID %s in LassoServer object.\n";
- case LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILLE:
- return "Unsupported SOAP profile\n";
+ case LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE:
+ return "Unsupported protocol profile\n";
case LASSO_PARAM_ERROR_BADTYPE_OR_NULL_OBJ:
return "An object type provided as parameter is invalid or object is NULL.\n";
diff --git a/lasso/xml/errors.h b/lasso/xml/errors.h
index 83b7c247..32073368 100644
--- a/lasso/xml/errors.h
+++ b/lasso/xml/errors.h
@@ -43,7 +43,7 @@
#define LASSO_SERVER_ERROR_PROVIDER_NOTFOUND -201
#define LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED -202
-#define LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILLE -301
+#define LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE -301
#define LASSO_PARAM_ERROR_BADTYPE_OR_NULL_OBJ -501
#define LASSO_PARAM_ERROR_INVALID_VALUE -502