[Core] fix change of enumeration value

This change broke the API, revert it.
This commit is contained in:
Benjamin Dauvergne 2010-08-05 14:07:02 +02:00
parent 5f6c27f7b2
commit 72e581f8cf
1 changed files with 2 additions and 2 deletions

View File

@ -128,8 +128,8 @@ typedef enum {
typedef enum {
LASSO_PROVIDER_ROLE_ANY = -1,
LASSO_PROVIDER_ROLE_NONE = 0,
LASSO_PROVIDER_ROLE_IDP = 1,
LASSO_PROVIDER_ROLE_SP = 2,
LASSO_PROVIDER_ROLE_SP = 1,
LASSO_PROVIDER_ROLE_IDP = 2,
LASSO_PROVIDER_ROLE_BOTH = 3,
LASSO_PROVIDER_ROLE_AUTHN_AUTHORITY = 4,
LASSO_PROVIDER_ROLE_AUTHZ_AUTHORITY = 8,