From af870ebc8f028ccbeed5da21cd1c079de65b8b23 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 16 Feb 2017 15:57:15 -0700 Subject: [PATCH] bugfix update byte count total --- dns.packer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dns.packer.js b/dns.packer.js index ce65ae4..27e86ee 100644 --- a/dns.packer.js +++ b/dns.packer.js @@ -97,7 +97,7 @@ var dnspack = exports.DNS_PACKER = { total += 1; }); } else { - dnspack.packRdata(ab, dv, total, a); + total = dnspack.packRdata(ab, dv, total, a); } }