diff options
| -rw-r--r-- | lasso/id-ff/profile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/id-ff/profile.c b/lasso/id-ff/profile.c index 7486d0df..d761490f 100644 --- a/lasso/id-ff/profile.c +++ b/lasso/id-ff/profile.c @@ -129,9 +129,9 @@ lasso_profile_get_request_type_from_soap_msg(const gchar *soap) } } else if (strcmp(name, "Modify") == 0) { if (strcmp((char*)ns->href, LASSO_DISCO_HREF) == 0) { - type =LASSO_REQUEST_TYPE_DISCO_MODIFY; + type = LASSO_REQUEST_TYPE_DISCO_MODIFY; } else { - type =LASSO_REQUEST_TYPE_DST_MODIFY; + type = LASSO_REQUEST_TYPE_DST_MODIFY; } } else if (strcmp(name, "SASLRequest") == 0) { type = LASSO_REQUEST_TYPE_SASL_REQUEST; |
