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
Adam Osuchowski
Kea
Commits
667d94d9
Commit
667d94d9
authored
Dec 19, 2012
by
Marcin Siodelski
Browse files
[2544] Replace invalid AND with OR operators.
This fixes the omission in previous commit.
parent
fdce9eb7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/bin/dhcp6/config_parser.cc
View file @
667d94d9
...
...
@@ -858,13 +858,13 @@ public:
// Try uint32 type parser.
if
(
!
buildParser
<
Uint32Parser
,
Uint32Storage
>
(
parser
,
uint32_values_
,
param
.
second
)
||
param
.
second
)
&&
// Try string type parser.
!
buildParser
<
StringParser
,
StringStorage
>
(
parser
,
string_values_
,
param
.
second
)
||
param
.
second
)
&&
// Try pool parser.
!
buildParser
<
PoolParser
,
PoolStorage
>
(
parser
,
pools_
,
param
.
second
)
||
param
.
second
)
&&
// Try option data parser.
!
buildParser
<
OptionDataListParser
,
OptionStorage
>
(
parser
,
options_
,
param
.
second
))
{
...
...
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