summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-01-31 20:25:25 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-01-31 20:25:25 (GMT)
commit9be64debafa321a6712a9c500b36136757d588c7 (patch)
treed912892649f6d50559b545494fa225e1ea36a24e /src/uscxml/plugins
parent3b321677e433dbc6f88c9e7faed0857022514efe (diff)
downloaduscxml-9be64debafa321a6712a9c500b36136757d588c7.zip
uscxml-9be64debafa321a6712a9c500b36136757d588c7.tar.gz
uscxml-9be64debafa321a6712a9c500b36136757d588c7.tar.bz2
Corrected configure-time check for SMTP in curl
Diffstat (limited to 'src/uscxml/plugins')
-rw-r--r--src/uscxml/plugins/ioprocessor/scxml/SCXMLIOProcessor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uscxml/plugins/ioprocessor/scxml/SCXMLIOProcessor.cpp b/src/uscxml/plugins/ioprocessor/scxml/SCXMLIOProcessor.cpp
index 17b5cb4..dda51b7 100644
--- a/src/uscxml/plugins/ioprocessor/scxml/SCXMLIOProcessor.cpp
+++ b/src/uscxml/plugins/ioprocessor/scxml/SCXMLIOProcessor.cpp
@@ -81,8 +81,8 @@ boost::shared_ptr<IOProcessorImpl> SCXMLIOProcessor::create(InterpreterImpl* int
Data SCXMLIOProcessor::getDataModelVariables() {
Data data;
- if(_url.length() > 0);
- data.compound["location"] = Data(_url, Data::VERBATIM);
+ if(_url.length() > 0)
+ data.compound["location"] = Data(_url, Data::VERBATIM);
return data;
}