$OpenBSD: patch-pdns_logger_cc,v 1.1 2018/09/09 17:47:28 florian Exp $
Reported upstream: https://github.com/PowerDNS/pdns/pull/6928

Index: pdns/logger.cc
--- pdns/logger.cc.orig
+++ pdns/logger.cc
@@ -201,6 +201,16 @@ Logger& Logger::operator<<(unsigned long i)
   return *this;
 }
 
+Logger& Logger::operator<<(long long i)
+{
+  ostringstream tmp;
+  tmp<<i;
+
+  *this<<tmp.str();
+
+  return *this;
+}
+
 Logger& Logger::operator<<(unsigned long long i)
 {
   ostringstream tmp;
