summaryrefslogtreecommitdiffstats
path: root/docs/lasso-book
diff options
context:
space:
mode:
authorEmmanuel Raviart <eraviart@entrouvert.com>2004-08-17 15:50:12 +0000
committerEmmanuel Raviart <eraviart@entrouvert.com>2004-08-17 15:50:12 +0000
commitb0333739d2fc6eb3818089237e57c862b19afcb4 (patch)
tree1af150929edf7bec9bce279d0d38525a3dc34ad0 /docs/lasso-book
parent856bb4e8858d83d35605479142ffc2e6a0f36c93 (diff)
downloadlasso-b0333739d2fc6eb3818089237e57c862b19afcb4.tar.gz
lasso-b0333739d2fc6eb3818089237e57c862b19afcb4.tar.xz
lasso-b0333739d2fc6eb3818089237e57c862b19afcb4.zip
I presume that the writer of the documentation "Writing a Liberty Alliance
service provider in C" has never coded such a SP in C.
Diffstat (limited to 'docs/lasso-book')
-rw-r--r--docs/lasso-book/writing-a-c-sp.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/lasso-book/writing-a-c-sp.txt b/docs/lasso-book/writing-a-c-sp.txt
index 6927997f..14b0bc87 100644
--- a/docs/lasso-book/writing-a-c-sp.txt
+++ b/docs/lasso-book/writing-a-c-sp.txt
@@ -213,10 +213,10 @@ object.
::
if (session_dump != NULL) {
- lasso_login_set_session_from_dump(login, session_dump);
+ lasso_profile_set_session_from_dump(LASSO_PROFILE(login), session_dump);
}
if (identity_dump != NULL) {
- lasso_login_set_identity_from_dump(login, identity_dump);
+ lasso_profile_set_identity_from_dump(LASSO_PROFILE(login), identity_dump);
}
lasso_login_accept_sso(login);