diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2010-10-06 10:37:07 +0200 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2010-10-06 17:00:52 +0200 |
| commit | 3d1d90ee315301ae258efbb66f009bf681d4a4dd (patch) | |
| tree | 1167f6dec3013f405628f680275c88358ff29e10 | |
| parent | e2611e16d655cf49d2e4a996eb284c86e4d49ffd (diff) | |
| download | lasso-3d1d90ee315301ae258efbb66f009bf681d4a4dd.tar.gz lasso-3d1d90ee315301ae258efbb66f009bf681d4a4dd.tar.xz lasso-3d1d90ee315301ae258efbb66f009bf681d4a4dd.zip | |
[Core] change isdefault type in EndpointType structure
As integer we can represent the three value of isdefault:
- true
- false
- attribute absent
| -rw-r--r-- | lasso/id-ff/providerprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lasso/id-ff/providerprivate.h b/lasso/id-ff/providerprivate.h index 66b9ad08..1adce734 100644 --- a/lasso/id-ff/providerprivate.h +++ b/lasso/id-ff/providerprivate.h @@ -49,7 +49,7 @@ struct EndpointType_s { char *url; char *return_url; int index; - gboolean is_default; + int is_default; }; typedef struct EndpointType_s EndpointType; |
