diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2004-07-12 20:10:14 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2004-07-12 20:10:14 +0000 |
| commit | 41fc550d846a0e4f655e6a66e497f7a4a289669b (patch) | |
| tree | f507f68ec3a76f774d8bfef49b4ff73baf63b2c6 | |
| parent | 42f4b1adf8df058155f6d0f13deca496daabf779 (diff) | |
| download | lasso-41fc550d846a0e4f655e6a66e497f7a4a289669b.tar.gz lasso-41fc550d846a0e4f655e6a66e497f7a4a289669b.tar.xz lasso-41fc550d846a0e4f655e6a66e497f7a4a289669b.zip | |
*** empty log message ***
| -rw-r--r-- | lasso/id-ff/federation_termination.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/id-ff/federation_termination.c b/lasso/id-ff/federation_termination.c index 760f4168..312b301e 100644 --- a/lasso/id-ff/federation_termination.c +++ b/lasso/id-ff/federation_termination.c @@ -106,7 +106,7 @@ lasso_federation_termination_init_request(LassoFederationTermination *notificati } /* get the name identifier (!!! depend on the provider type : SP or IDP !!!)*/ - switch(notification->provider_type){ + switch(profileContext->provider_type){ case lassoProfileContextServiceProviderType: nameIdentifier = LASSO_NODE(lasso_identity_get_local_nameIdentifier(identity)); if(!nameIdentifier) @@ -248,12 +248,12 @@ lasso_federation_termination_new(LassoServer *server, /* set the federation_termination object */ notification = g_object_new(LASSO_TYPE_FEDERATION_TERMINATION, NULL); - notification->provider_type = provider_type; /* set the properties */ profileContext = LASSO_PROFILE_CONTEXT(notification); profileContext->user = user; profileContext->server = server; + profileContext->provider_type = provider_type; return(notification); } |
