diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2004-08-26 13:20:45 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2004-08-26 13:20:45 +0000 |
| commit | 81ea440da3f659fb7c4b67648bac9a47ae5b5ea8 (patch) | |
| tree | ffd46884c06a7351cb09926f3e6934e3037f50b1 | |
| parent | a1aac4c4c5af0317b1a2e0f1977f9afb44acb219 (diff) | |
Rename constant LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILLE to LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE, now can be use by all profiles
| -rw-r--r-- | lasso/xml/errors.c | 4 | ||||
| -rw-r--r-- | lasso/xml/errors.h | 2 |
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 |
