Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
3043fdb6
Commit
3043fdb6
authored
Nov 15, 2016
by
Tomek Mrugalski
🛰
Browse files
Compilation fix on ubuntu 16.04
parent
7acb08d8
Changes
1
Show whitespace changes
Inline
Side-by-side
src/bin/dhcp6/parser_context.cc
View file @
3043fdb6
...
...
@@ -51,7 +51,7 @@ isc::data::ConstElementPtr
Parser6Context
::
parseFile
(
const
std
::
string
&
filename
,
ParserType
parser_type
)
{
ifstream
f
;
f
.
open
(
filename
);
f
.
open
(
filename
.
c_str
()
);
if
(
!
f
.
is_open
())
{
isc_throw
(
BadValue
,
"Can't open file "
<<
filename
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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