diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2008-08-01 14:09:19 +0000 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2008-08-01 14:09:19 +0000 |
| commit | bb0644277300486fcaad42fb7793abbab9876ff3 (patch) | |
| tree | 197b707ed3c0feb9d2c846adb6b71a67588d7686 | |
| parent | 8667e771b1b0758788d0693a5c3f8ddd1b18684b (diff) | |
| download | lasso-bb0644277300486fcaad42fb7793abbab9876ff3.tar.gz lasso-bb0644277300486fcaad42fb7793abbab9876ff3.tar.xz lasso-bb0644277300486fcaad42fb7793abbab9876ff3.zip | |
add a general error for a badly initialized object and two error for idwsf relating to a missing assertion id and a missing endpoint declaration
| -rw-r--r-- | lasso/errors.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lasso/errors.c b/lasso/errors.c index 7afddf76..19abc417 100644 --- a/lasso/errors.c +++ b/lasso/errors.c @@ -255,10 +255,9 @@ lasso_strerror(int error_code) return "Missing endpoint reference"; case LASSO_DST_ERROR_QUERY_PARTIALLY_FAILED: return "Query partially failed : some items were correctly processed"; - case LASSO_LOGIN_ERROR_FEDERATION_NOT_FOUND: - return "Federation not found on login"; case LASSO_PROFILE_ERROR_MISSING_REMOTE_PROVIDERID: return "ProviderID not found"; + default: return "Unknown LASSO_ERROR, you should regenerate errors.c"; } |
