From: Pieter Lexis Date: Tue, 26 May 2015 10:22:25 +0000 (+0200) Subject: Align RRSIGRecordContent to 8-byte boundries X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~77^2~4^2~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0bb94f2614087fee0d16596c730bea2c0cf04661;p=thirdparty%2Fpdns.git Align RRSIGRecordContent to 8-byte boundries --- diff --git a/pdns/dnsrecords.hh b/pdns/dnsrecords.hh index 676bec05fb..f228fc84b9 100644 --- a/pdns/dnsrecords.hh +++ b/pdns/dnsrecords.hh @@ -366,10 +366,10 @@ public: includeboilerplate(RRSIG) uint16_t d_type; - uint8_t d_algorithm, d_labels; - uint32_t d_originalttl, d_sigexpire, d_siginception; uint16_t d_tag; string d_signer, d_signature; + uint32_t d_originalttl, d_sigexpire, d_siginception; + uint8_t d_algorithm, d_labels; };