Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
22ce5007
Commit
22ce5007
authored
Jul 07, 2011
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Directory volume configuration error message fix
parent
fd2a9e78
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
wb/lib/wb/src/wb_lfu.cpp
wb/lib/wb/src/wb_lfu.cpp
+10
-3
No files found.
wb/lib/wb/src/wb_lfu.cpp
View file @
22ce5007
...
...
@@ -1580,14 +1580,21 @@ pwr_tStatus lfu_SaveDirectoryVolume(
if
(
!
found
)
{
char
msg
[
200
];
if
(
nodeo
.
cid
()
==
pwr_cClass_FriendNodeConfig
)
sprintf
(
msg
,
"Error in FriendNodeConfig object '%s', Unknown volume"
,
nodeconfig_name
);
else
sprintf
(
msg
,
"Error in SevNodeConfig object '%s', Unknown volume"
,
nodeconfig_name
);
MsgWindow
::
message
(
'E'
,
msg
,
msgw_ePop_Default
);
syntax_error
=
1
;
}
if
(
!
strcmp
(
nc
.
nodename
,
""
))
{
char
msg
[
200
];
sprintf
(
msg
,
"Error in NodeConfig object '%s', NodeName is missing
\n
"
,
if
(
nodeo
.
cid
()
==
pwr_cClass_FriendNodeConfig
)
sprintf
(
msg
,
"Error in FriendNodeConfig object '%s', NodeName is missing
\n
"
,
nodeo
.
longName
().
c_str
());
else
sprintf
(
msg
,
"Error in SevNodeConfig object '%s', NodeName is missing
\n
"
,
nodeo
.
longName
().
c_str
());
MsgWindow
::
message
(
'E'
,
msg
,
msgw_ePop_Default
);
syntax_error
=
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