mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-02-12 07:13:50 -05:00
double fallthrough annotation to please gcc parser.
git-svn-id: file:///svn/unbound/trunk@4284 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
cb0e3980d8
commit
6f4b0c4fa6
1 changed files with 3 additions and 1 deletions
|
|
@ -1758,9 +1758,11 @@ verify_canonrrset(sldns_buffer* buf, int algo, unsigned char* sigblock,
|
|||
case LDNS_RSASHA1:
|
||||
case LDNS_RSASHA1_NSEC3:
|
||||
digest_size = (digest_size ? digest_size : SHA1_DIGEST_SIZE);
|
||||
/* fallthrough */
|
||||
#endif
|
||||
/* double fallthrough annotation to please gcc parser */
|
||||
/* fallthrough */
|
||||
#ifdef USE_SHA2
|
||||
/* fallthrough */
|
||||
case LDNS_RSASHA256:
|
||||
digest_size = (digest_size ? digest_size : SHA256_DIGEST_SIZE);
|
||||
/* fallthrough */
|
||||
|
|
|
|||
Loading…
Reference in a new issue