summaryrefslogtreecommitdiff
path: root/src/log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.cpp')
-rw-r--r--src/log.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/log.cpp b/src/log.cpp
index 072f8c1..a09fe9b 100644
--- a/src/log.cpp
+++ b/src/log.cpp
@@ -53,8 +53,8 @@ std::ostream& operator<<(std::ostream& stream, LogGpgError const& value)
#endif
std::ostream& operator<<(std::ostream& stream, LogErrno const& value)
{
-// boost::system::system_error err(boost::system::error_code(value.err_,boost::system::get_system_category()));
- boost::system::system_error err(boost::system::error_code(value.err_,boost::system::get_posix_category()));
+ boost::system::system_error err(boost::system::error_code(value.err_,boost::system::get_system_category()));
+// boost::system::system_error err(boost::system::error_code(value.err_,boost::system::get_posix_category()));
return stream << err.what();
}