aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/poco
diff options
context:
space:
mode:
authorloudhorr <loudhorr@yandex-team.ru>2022-02-10 16:46:26 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:26 +0300
commitcda908cacb24be13e419866da89ff4fbeea31f89 (patch)
treecc0bc607920fb1192332619d57eb874402a23bff /contrib/libs/poco
parent48030071922c430b2b2ffbf612d75c7afbf7a2c0 (diff)
downloadydb-cda908cacb24be13e419866da89ff4fbeea31f89.tar.gz
Restoring authorship annotation for <loudhorr@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/poco')
-rw-r--r--contrib/libs/poco/Foundation/src/FileChannel.cpp10
-rw-r--r--contrib/libs/poco/Net/ya.make2
2 files changed, 6 insertions, 6 deletions
diff --git a/contrib/libs/poco/Foundation/src/FileChannel.cpp b/contrib/libs/poco/Foundation/src/FileChannel.cpp
index c2b2f6ee88..2148154a8d 100644
--- a/contrib/libs/poco/Foundation/src/FileChannel.cpp
+++ b/contrib/libs/poco/Foundation/src/FileChannel.cpp
@@ -126,7 +126,7 @@ void FileChannel::log(const Message& msg)
{
_pFile->write(msg.getText(), _flush);
}
- catch (const WriteFileException &)
+ catch (const WriteFileException &)
{
// In case of no space left on device,
// we try to purge old files or truncate current file.
@@ -139,10 +139,10 @@ void FileChannel::log(const Message& msg)
{
PurgeOneFileStrategy().purge(_path);
}
-
- delete _pFile;
- _pFile = 0;
- _pFile = new LogFile(_path);
+
+ delete _pFile;
+ _pFile = 0;
+ _pFile = new LogFile(_path);
}
}
diff --git a/contrib/libs/poco/Net/ya.make b/contrib/libs/poco/Net/ya.make
index 9feadc7027..4bdace0995 100644
--- a/contrib/libs/poco/Net/ya.make
+++ b/contrib/libs/poco/Net/ya.make
@@ -33,7 +33,7 @@ CFLAGS(
-DPOCO_SOCKETADDRESS_DONT_PREFER_IPV4
)
-IF (OS_LINUX)
+IF (OS_LINUX)
CFLAGS(
-DPOCO_HAVE_FD_EPOLL
)