From: Remi Gacogne Date: Fri, 29 Oct 2021 12:47:15 +0000 (+0200) Subject: dnsdist: Remove one last forgotten boost::bind in dnsdist.hh X-Git-Tag: rec-4.6.0-beta1~12^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F10919%2Fhead;p=thirdparty%2Fpdns.git dnsdist: Remove one last forgotten boost::bind in dnsdist.hh --- diff --git a/pdns/dnsdist.hh b/pdns/dnsdist.hh index 4998f12e0c..4576f84359 100644 --- a/pdns/dnsdist.hh +++ b/pdns/dnsdist.hh @@ -401,7 +401,7 @@ struct DNSDistStats {"uptime", uptimeOfProcess}, {"real-memory-usage", getRealMemoryUsage}, {"special-memory-usage", getSpecialMemoryUsage}, - {"udp-in-errors", boost::bind(udpErrorStats, "udp-in-errors")}, + {"udp-in-errors", std::bind(udpErrorStats, "udp-in-errors")}, {"udp-noport-errors", std::bind(udpErrorStats, "udp-noport-errors")}, {"udp-recvbuf-errors", std::bind(udpErrorStats, "udp-recvbuf-errors")}, {"udp-sndbuf-errors", std::bind(udpErrorStats, "udp-sndbuf-errors")},