diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2006-11-02 10:23:13 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2006-11-02 10:23:13 +0000 |
| commit | 367f94702b416ce08899decb69a4d0b8610b69a8 (patch) | |
| tree | 11e1fe4439701872650b8f81a81948b9a6ab5721 | |
| parent | 127d53c39123db6854a9b3b2c2f30920a8a23d9a (diff) | |
| download | lasso-367f94702b416ce08899decb69a4d0b8610b69a8.tar.gz lasso-367f94702b416ce08899decb69a4d0b8610b69a8.tar.xz lasso-367f94702b416ce08899decb69a4d0b8610b69a8.zip | |
coding style
| -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; |
