summaryrefslogtreecommitdiffstats
path: root/lasso/xml
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2011-01-04 16:43:06 +0100
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2011-01-04 16:43:06 +0100
commit346071a6300032f17fcda345163bd5c444fb3c05 (patch)
tree4940b6c042dba018a270606c2613e7c55e5d8f33 /lasso/xml
parent265f69e236282710bf3adb3d87251df5075f6b6f (diff)
downloadlasso-346071a6300032f17fcda345163bd5c444fb3c05.tar.gz
lasso-346071a6300032f17fcda345163bd5c444fb3c05.tar.xz
lasso-346071a6300032f17fcda345163bd5c444fb3c05.zip
[wsf] fix wsf preprocessor conditionals
Diffstat (limited to 'lasso/xml')
-rw-r--r--lasso/xml/xml.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lasso/xml/xml.c b/lasso/xml/xml.c
index 5504c3fc..f4895316 100644
--- a/lasso/xml/xml.c
+++ b/lasso/xml/xml.c
@@ -54,8 +54,10 @@
#include "../debug.h"
#include "./soap-1.1/soap_envelope.h"
#include "./soap-1.1/soap_body.h"
-#if LASSO_WSF_ENABLED
+#include "../lasso_config.h"
+#ifdef LASSO_WSF_ENABLED
#include "./idwsf_strings.h"
+#include "./id-wsf-2.0/idwsf2_strings.h"
#endif
static void lasso_node_build_xmlNode_from_snippets(LassoNode *node, xmlNode *xmlnode,
@@ -2062,7 +2064,7 @@ static const char *
prefix_from_href_and_nodename(const xmlChar *href, G_GNUC_UNUSED const xmlChar *nodename) {
char *prefix = NULL;
#ifdef LASSO_WSF_ENABLED
- char *tmp = NULL
+ char *tmp = NULL;
#endif
if (strcmp((char*)href, LASSO_LASSO_HREF) == 0)