summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-07-15 15:44:09 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-07-15 15:44:09 +0000
commitdfd1df5b0e6b51df41bb65eff74ec170aa1deb3f (patch)
tree24dff3701f16030c5cfcda7f73c538df75bc8747
parenta08d41ea2818ac38c9889c457208098af6362744 (diff)
downloadlasso-dfd1df5b0e6b51df41bb65eff74ec170aa1deb3f.tar.gz
lasso-dfd1df5b0e6b51df41bb65eff74ec170aa1deb3f.tar.xz
lasso-dfd1df5b0e6b51df41bb65eff74ec170aa1deb3f.zip
Added attribute 'msg_relayState' in LassoProfileContext
(previously set in LassoLogin)
-rw-r--r--lasso/id-ff/profile_context.c6
-rw-r--r--lasso/id-ff/profile_context.h1
2 files changed, 5 insertions, 2 deletions
diff --git a/lasso/id-ff/profile_context.c b/lasso/id-ff/profile_context.c
index 003a1fbc..b2bae29a 100644
--- a/lasso/id-ff/profile_context.c
+++ b/lasso/id-ff/profile_context.c
@@ -147,6 +147,7 @@ lasso_profile_context_finalize(LassoProfileContext *ctx)
g_free(ctx->remote_providerID);
g_free(ctx->msg_url);
g_free(ctx->msg_body);
+ g_free(ctx->msg_relayState);
g_free (ctx->private);
@@ -182,8 +183,9 @@ lasso_profile_context_instance_init(GTypeInstance *instance,
ctx->remote_providerID = NULL;
- ctx->msg_url = NULL;
- ctx->msg_body = NULL;
+ ctx->msg_url = NULL;
+ ctx->msg_body = NULL;
+ ctx->msg_relayState = NULL;
}
static void
diff --git a/lasso/id-ff/profile_context.h b/lasso/id-ff/profile_context.h
index c9ba4f9b..c216e90f 100644
--- a/lasso/id-ff/profile_context.h
+++ b/lasso/id-ff/profile_context.h
@@ -84,6 +84,7 @@ struct _LassoProfileContext {
gchar *msg_url;
gchar *msg_body;
+ gchar *msg_relayState;
/*< private >*/
LassoProfileContextPrivate *private;