summaryrefslogtreecommitdiffstats
path: root/lasso/id-ff/identity.c
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-10-01 12:13:31 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-10-01 12:13:31 +0000
commit7374c45bb72745deb8ccb5b04fb0b3e6f5477aa5 (patch)
treeb6158edb45bbee85739709ed36f3aa0b26f751af /lasso/id-ff/identity.c
parentbf915b0220ecde864eb0ca4bf1f8943bece89676 (diff)
downloadlasso-7374c45bb72745deb8ccb5b04fb0b3e6f5477aa5.tar.gz
lasso-7374c45bb72745deb8ccb5b04fb0b3e6f5477aa5.tar.xz
lasso-7374c45bb72745deb8ccb5b04fb0b3e6f5477aa5.zip
Fixed a bug in instance_init() methods of LassoIdentity and LassoSession classes
is_dirty flag was initialized to TRUE instead of FALSE.
Diffstat (limited to 'lasso/id-ff/identity.c')
-rw-r--r--lasso/id-ff/identity.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lasso/id-ff/identity.c b/lasso/id-ff/identity.c
index d2133ba0..36363f9b 100644
--- a/lasso/id-ff/identity.c
+++ b/lasso/id-ff/identity.c
@@ -327,7 +327,7 @@ lasso_identity_instance_init(LassoIdentity *identity)
identity->federations = g_hash_table_new_full(g_str_hash, g_str_equal,
(GDestroyNotify)g_free,
(GDestroyNotify)lasso_federation_destroy);
- identity->is_dirty = TRUE;
+ identity->is_dirty = FALSE;
}
static void