mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Fix compiler warning in DNS analyzer
Switch statement compared values from different enum types
This commit is contained in:
parent
399660c9eb
commit
766b1d9520
3 changed files with 6 additions and 2 deletions
4
CHANGES
4
CHANGES
|
@ -1,4 +1,8 @@
|
|||
|
||||
2.6-69 | 2019-01-14 14:49:49 -0600
|
||||
|
||||
* Fix compiler warning in DNS analyzer (Jon Siwek, Corelight)
|
||||
|
||||
2.6-68 | 2019-01-14 14:18:46 -0600
|
||||
|
||||
* GH-162: fix segfault when &expire_func is missing a return value (Jon Siwek, Corelight)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
2.6-68
|
||||
2.6-69
|
||||
|
|
|
@ -1157,7 +1157,7 @@ int DNS_Interpreter::ParseRR_DS(DNS_MsgInfo* msg,
|
|||
break;
|
||||
case SHA384:
|
||||
break;
|
||||
case reserved0:
|
||||
case analyzer::dns::reserved:
|
||||
analyzer->Weird("DNSSEC_DS_ResrevedDigestType", fmt("%d", ds_dtype));
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue