Skip to content

Commit

Permalink
zeekGH-535: fix typo of "C_HESIOD" in DNS::classes
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiwek committed Aug 12, 2019
1 parent 18e4976 commit 31d30bb
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

3.1.0-dev.22 | 2019-08-12 13:31:12 -0700

* GH-535: fix typo of "C_HESIOD" in DNS::classes (Jon Siwek, Corelight)

3.1.0-dev.21 | 2019-08-12 13:00:21 -0700

* Add new distro to Travis CI configuration for running leak tests (Tim Wojtulewicz, Corelight)
Expand Down
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ Changed Functionality
``Known::AddrPortServTriplet`` and ``Known::services`` is now a table
instead of just a set.

- The DNS class name for Hesiod in the ``DNS::classes`` table is now spelled
correctly as "C_HESIOD" instead of "C_HESOD". For reference, this
class name string may appear in the dns.log file or in any custom
script logic that inspects the ``qclass`` field of ``DNS::Info``
after a ``dns_request`` event.

Removed Functionality
---------------------

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.0-dev.21
3.1.0-dev.22
2 changes: 1 addition & 1 deletion doc
2 changes: 1 addition & 1 deletion scripts/base/protocols/dns/consts.zeek
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export {
[1] = "C_INTERNET",
[2] = "C_CSNET",
[3] = "C_CHAOS",
[4] = "C_HESOD",
[4] = "C_HESIOD",
[254] = "C_NONE",
[255] = "C_ANY",
} &default = function(n: count): string { return fmt("qclass-%d", n); };
Expand Down

0 comments on commit 31d30bb

Please sign in to comment.