2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

[master] remove inline variable declaration (broke win32)

This commit is contained in:
Evan Hunt
2017-01-04 11:17:06 -08:00
parent 8dd5224034
commit 6d25cd0502

View File

@@ -2292,7 +2292,8 @@ dns_message_renderend(dns_message_t *msg) {
*/
if (msg->padding_off > 0) {
unsigned char *cp = isc_buffer_used(msg->buffer);
isc_uint16_t len;
unsigned int used, remaining;
isc_uint16_t len, padsize;
/* Check PAD */
if ((cp[-4] != 0) ||
@@ -2305,8 +2306,6 @@ dns_message_renderend(dns_message_t *msg) {
* Zero-fill the PAD to the computed size;
* patch PAD length and OPT rdlength
*/
unsigned int used, remaining;
isc_uint16_t padsize;
/* Aligned used length + reserved to padding block */
used = isc_buffer_usedlength(msg->buffer);