2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

[3919] Fixed typo

This commit is contained in:
Francis Dupont
2015-06-24 14:59:31 +02:00
parent 4faf2a0b19
commit 10eb775360
2 changed files with 2 additions and 2 deletions

View File

@@ -34,7 +34,7 @@ using namespace isc::dns;
class NAPTRImpl {
public:
NAPTRImpl() : order(0, preference(0), replacement(".") {}
NAPTRImpl() : order(0), preference(0), replacement(".") {}
NAPTRImpl(InputBuffer& buffer, size_t rdata_len) : replacement(".") {
if (rdata_len < 4 || buffer.getLength() - buffer.getPosition() < 4) {

View File

@@ -2565,7 +2565,7 @@ namespace generic {
class NAPTRImpl {
public:
NAPTRImpl() : order(0, preference(0), replacement(".") {}
NAPTRImpl() : order(0), preference(0), replacement(".") {}
NAPTRImpl(InputBuffer& buffer, size_t rdata_len) : replacement(".") {
if (rdata_len < 4 || buffer.getLength() - buffer.getPosition() < 4) {