[Core] change isdefault type in EndpointType structure

As integer we can represent the three value of isdefault:
- true
- false
- attribute absent
This commit is contained in:
Benjamin Dauvergne 2010-10-06 10:37:07 +02:00
parent e2611e16d6
commit 3d1d90ee31
1 changed files with 1 additions and 1 deletions

View File

@ -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;