summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRene Engelhard <rene@rene-engelhard.de>2017-11-13 20:20:00 +0100
committerAndras Timar <andras.timar@collabora.com>2018-02-16 12:13:10 +0100
commita4396b9be569d4fcaedfff1b3a18157db1fa9292 (patch)
tree563456d0df9ee5e8c7bb132289fcd28552af4f6a
parentbe39f3c4111364a9bab0837df8fc52856687465c (diff)
fix build with poco 1.8.0(.1)2.1.5-6
(cherry picked from commit 623b45a533198acc3ef7a393382f23ebb0f6ebab)
-rw-r--r--common/UnitHTTP.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/UnitHTTP.hpp b/common/UnitHTTP.hpp
index 0343036f1..a6a107d9f 100644
--- a/common/UnitHTTP.hpp
+++ b/common/UnitHTTP.hpp
@@ -82,13 +82,13 @@ public:
{
return _dummyStream;
}
-#if POCO_VERSION < 0x02000000
+#if POCO_VERSION < 0x01080000
virtual bool expectContinue() const override
{
return false;
}
#endif
-#if POCO_VERSION >= 0x02000000
+#if POCO_VERSION >= 0x01080000
virtual bool secure() const override
{
return true;