Skip to content

Commit

Permalink
Merge pull request #8268 from zeha/dnsdist-spellcheck
Browse files Browse the repository at this point in the history
Fix some spelling mistakes noticed by lintian
  • Loading branch information
rgacogne committed Sep 3, 2019
2 parents b9d4b2f + c72ddfc commit 28d50b5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/backends/bind.rst
Expand Up @@ -92,7 +92,7 @@ SQLite3 journal mode to set. The default is WAL. Set to empty to leave the journ
``bind-hybrid``
~~~~~~~~~~~~~~~

Store DNSSEC keys and metadata storage in an other backend. See the
Store DNSSEC keys and metadata storage in another backend. See the
:ref:`dnssec-modes-hybrid-bind` documentation.

.. _setting-bind-ignore-broken-records:
Expand Down
6 changes: 3 additions & 3 deletions pdns/dnsdist-web.cc
Expand Up @@ -530,7 +530,7 @@ static void connectionThread(int sock, ComboAddress remote)
output << "# TYPE " << frontsbase << "tcpdiedreadingquery " << "counter" << "\n";
output << "# HELP " << frontsbase << "tcpdiedsendingresponse " << "Amount of TCP connections terminated while sending a response to the client" << "\n";
output << "# TYPE " << frontsbase << "tcpdiedsendingresponse " << "counter" << "\n";
output << "# HELP " << frontsbase << "tcpgaveup " << "Amount of TCP connections terminated after too many attemps to get a connection to the backend" << "\n";
output << "# HELP " << frontsbase << "tcpgaveup " << "Amount of TCP connections terminated after too many attempts to get a connection to the backend" << "\n";
output << "# TYPE " << frontsbase << "tcpgaveup " << "counter" << "\n";
output << "# HELP " << frontsbase << "tcpclientimeouts " << "Amount of TCP connections terminated by a timeout while reading from the client" << "\n";
output << "# TYPE " << frontsbase << "tcpclientimeouts " << "counter" << "\n";
Expand Down Expand Up @@ -607,7 +607,7 @@ static void connectionThread(int sock, ComboAddress remote)
output << "# TYPE " << dohfrontsbase << "http1_nb500responses " << "counter" << "\n";
output << "# HELP " << dohfrontsbase << "http1_nb502responses " << "Number of responses with a 502 status code sent over HTTP/1.x" << "\n";
output << "# TYPE " << dohfrontsbase << "http1_nb502responses " << "counter" << "\n";
output << "# HELP " << dohfrontsbase << "http1_nbotherresponses " << "Number of responses with an other status code sent over HTTP/1.x" << "\n";
output << "# HELP " << dohfrontsbase << "http1_nbotherresponses " << "Number of responses with another status code sent over HTTP/1.x" << "\n";
output << "# TYPE " << dohfrontsbase << "http1_nbotherresponses " << "counter" << "\n";
output << "# HELP " << dohfrontsbase << "http2_queries " << "Number of queries received over HTTP/2.x" << "\n";
output << "# TYPE " << dohfrontsbase << "http2_queries " << "counter" << "\n";
Expand All @@ -621,7 +621,7 @@ static void connectionThread(int sock, ComboAddress remote)
output << "# TYPE " << dohfrontsbase << "http2_nb500responses " << "counter" << "\n";
output << "# HELP " << dohfrontsbase << "http2_nb502responses " << "Number of responses with a 502 status code sent over HTTP/2.x" << "\n";
output << "# TYPE " << dohfrontsbase << "http2_nb502responses " << "counter" << "\n";
output << "# HELP " << dohfrontsbase << "http2_nbotherresponses " << "Number of responses with an other status code sent over HTTP/2.x" << "\n";
output << "# HELP " << dohfrontsbase << "http2_nbotherresponses " << "Number of responses with another status code sent over HTTP/2.x" << "\n";
output << "# TYPE " << dohfrontsbase << "http2_nbotherresponses " << "counter" << "\n";

#ifdef HAVE_DNS_OVER_HTTPS
Expand Down
2 changes: 1 addition & 1 deletion pdns/recursordist/test-recursorcache_cc.cc
Expand Up @@ -292,7 +292,7 @@ BOOST_AUTO_TEST_CASE(test_RecursorCacheSimple) {
dr4.d_ttl = static_cast<uint32_t>(ttd);
dr4.d_place = DNSResourceRecord::AUTHORITY;

// insert an other entry but for 192.168.0.1/31
// insert another entry but for 192.168.0.1/31
records.clear();
records.push_back(dr4);
MRC.replace(now, power, QType(QType::A), records, signatures, authRecords, true, boost::optional<Netmask>("192.168.0.1/31"));
Expand Down

0 comments on commit 28d50b5

Please sign in to comment.