Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set(BOOST_VERSION_MAJOR "1" CACHE STRING "boost major version")
set(BOOST_VERSION_MINOR "65" CACHE STRING "boost minor version")

set(OPENSSL_VERSION_MAJOR "1" CACHE STRING "major version")
set(OPENSSL_VERSION_MINOR "0" CACHE STRING "minor version")
set(OPENSSL_VERSION_MINOR "1" CACHE STRING "minor version")
set(OPENSSL_VERSION_PATCH "0" CACHE STRING "patch version")

# -----------------------------------------------------------------------------
Expand Down Expand Up @@ -129,7 +129,7 @@ message(STATUS " host system: ${CMAKE_HOST_SYSTEM}")
#
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
set(Boost_USE_DEBUG_LIBS ON)
set(Boost_USE_RELEASE_LIBS OFF)
else()
Expand Down
2 changes: 1 addition & 1 deletion src/OpcUaStackServer/NodeSet/NodeSetValueParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ namespace OpcUaStackServer
boost::property_tree::ptree::iterator it;
for (it = ptree.begin(); it!=ptree.end(); it++) {
std::string tagValue = xmlns.cutPrefix(it->first);
if (tagValue == "<xmlattr>") continue;
if (tagValue == "<xmlattr>" || tagValue.empty()) continue;
if (tagValue != element) {
OpcUaStackCore::Log(OpcUaStackCore::Error, "Invalid tag")
.parameter("ExpectedTag", element)
Expand Down