diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2008-03-18 17:36:19 +0000 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2008-03-18 17:36:19 +0000 |
| commit | afbacadc7dee7da2970ce2895a4911d24df38003 (patch) | |
| tree | 2ae7eb60a9603bdd0c71620d2334b953c36ea749 | |
| parent | 1ab5cdf7524acf12a50598c49869659a1b6c13ab (diff) | |
* fix typo in the last commit :)
| -rw-r--r-- | lasso/id-wsf/data_service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lasso/id-wsf/data_service.c b/lasso/id-wsf/data_service.c index 56168e78..1f29ab80 100644 --- a/lasso/id-wsf/data_service.c +++ b/lasso/id-wsf/data_service.c @@ -818,7 +818,7 @@ lasso_data_service_process_modify_response_msg(LassoDataService *service, const g_return_val_if_fail(soap_msg != NULL, LASSO_PARAM_ERROR_INVALID_VALUE); envelope = LASSO_SOAP_ENVELOPE(lasso_node_new_from_dump(soap_msg)); - if (envelope == NULL || ! envelope->Body || ! envelope->Body>any || ! LASSO_IS_NODE(envelope->Body->any->data)) { + if (envelope == NULL || ! envelope->Body || ! envelope->Body->any || ! LASSO_IS_NODE(envelope->Body->any->data)) { return critical_error(LASSO_PROFILE_ERROR_INVALID_MSG); } |
