Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
10eb7753
Commit
10eb7753
authored
Jun 24, 2015
by
Francis Dupont
Browse files
[3919] Fixed typo
parent
4faf2a0b
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/lib/dns/rdata/generic/naptr_35.cc
View file @
10eb7753
...
...
@@ -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
)
{
...
...
src/lib/dns/rdataclass.cc
View file @
10eb7753
...
...
@@ -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
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment