From 6ef47339f7a0fd61cf4f7e5e6027eaf6bdff9745 Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Fri, 8 Jun 2007 18:10:13 +0000 Subject: recognize ID-WSF 2 disco query messages --- lasso/id-ff/profile.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lasso/id-ff/profile.c b/lasso/id-ff/profile.c index fdb5d71c..f7b43b2e 100644 --- a/lasso/id-ff/profile.c +++ b/lasso/id-ff/profile.c @@ -133,7 +133,8 @@ lasso_profile_get_request_type_from_soap_msg(const gchar *soap) } else if (strcmp(name, "AuthnRequest") == 0) { type = LASSO_REQUEST_TYPE_LECP; } else if (strcmp(name, "Query") == 0) { - if (strcmp((char*)ns->href, LASSO_DISCO_HREF) == 0) { + if (strcmp((char*)ns->href, LASSO_DISCO_HREF) == 0 || + strcmp((char*)ns->href, LASSO_IDWSF2_DISCO_HREF) == 0) { type = LASSO_REQUEST_TYPE_DISCO_QUERY; } else { type = LASSO_REQUEST_TYPE_DST_QUERY; -- cgit