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
ISC Open Source Projects
Kea
Commits
ed121ec4
Commit
ed121ec4
authored
Aug 21, 2014
by
Tomek Mrugalski
🛰
Browse files
[master] compilation fix for #3477 (#3531)
parent
0faba008
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/dhcpsrv/configuration.cc
View file @
ed121ec4
...
...
@@ -48,7 +48,7 @@ Configuration::getConfigSummary(const uint32_t selection) const {
s
<<
"DDNS: "
<<
(
ddns_enabled
?
"enabled"
:
"disabled"
)
<<
"; "
;
}
if
(
s
.
tellp
()
==
0
)
{
if
(
s
.
tellp
()
==
static_cast
<
std
::
streampos
>
(
0
)
)
{
s
<<
"no config details available"
;
}
...
...
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