-rw-r--r-- | lib/server.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/server.cc b/lib/server.cc index 51d4554..5eee1f3 100644 --- a/lib/server.cc +++ b/lib/server.cc @@ -79,4 +79,5 @@ namespace opkele { if(mode!=mode_checkid_immediate && mode!=mode_checkid_setup) throw bad_input(OPKELE_CP_ "invalid checkid_* mode"); + pout.clear(); assoc_t assoc; try { @@ -85,4 +86,6 @@ namespace opkele { // no handle specified or no valid handle found, going dumb assoc = alloc_assoc(mode_checkid_setup); + if(pin.has_param("openid.assoc_handle")) + pout["invalidate_handle"]=pin.get_param("openid.assoc_handle"); } string trust_root; @@ -93,5 +96,4 @@ namespace opkele { return_to = pin.get_param("openid.return_to"); validate(*assoc,pin,identity,trust_root); - pout.clear(); pout["mode"] = "id_res"; pout["assoc_handle"] = assoc->handle(); |