Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dssp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
dssp
Commits
6c0d51df
Unverified
Commit
6c0d51df
authored
May 30, 2023
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
for old gcc
parent
941a42ac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/dssp-server.cpp
+2
-2
No files found.
src/dssp-server.cpp
View file @
6c0d51df
...
@@ -141,7 +141,7 @@ int main(int argc, char *argv[])
...
@@ -141,7 +141,7 @@ int main(int argc, char *argv[])
std
::
error_code
ec
;
std
::
error_code
ec
;
config
.
parse
(
argc
,
argv
,
ec
);
config
.
parse
(
argc
,
argv
,
ec
);
if
(
ec
!=
std
::
errc
()
)
if
(
ec
)
{
{
std
::
cerr
<<
"Error parsing command line arguments: "
<<
ec
.
message
()
<<
std
::
endl
std
::
cerr
<<
"Error parsing command line arguments: "
<<
ec
.
message
()
<<
std
::
endl
<<
std
::
endl
<<
std
::
endl
...
@@ -150,7 +150,7 @@ int main(int argc, char *argv[])
...
@@ -150,7 +150,7 @@ int main(int argc, char *argv[])
}
}
config
.
parse_config_file
(
"config"
,
"dsspd.conf"
,
{
"."
,
"/etc"
},
ec
);
config
.
parse_config_file
(
"config"
,
"dsspd.conf"
,
{
"."
,
"/etc"
},
ec
);
if
(
ec
!=
std
::
errc
()
)
if
(
ec
)
{
{
std
::
cerr
<<
"Error parsing config file: "
<<
ec
.
message
()
<<
std
::
endl
;
std
::
cerr
<<
"Error parsing config file: "
<<
ec
.
message
()
<<
std
::
endl
;
exit
(
1
);
exit
(
1
);
...
...
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