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
647216f2
Commit
647216f2
authored
Aug 04, 2009
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version check at package generation of detached classvolume disabled
parent
5ff20a88
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
wb/changelog.txt
wb/changelog.txt
+2
-1
wb/lib/wb/src/wb_pkg.cpp
wb/lib/wb/src/wb_pkg.cpp
+4
-0
No files found.
wb/changelog.txt
View file @
647216f2
...
...
@@ -136,3 +136,4 @@
090630 cs wb Directory database changed from BerkeleyDb to wb_load format.
090701 cs plc Env variable PWR_EXT_INC added to plc compile command. Replaces pwrp_cmn.
090803 cs wb Bugfix in loading wbload file with objects containing object attributes.
090804 cs wb Version check at package generation disabled for detached classvolumes.
wb/lib/wb/src/wb_pkg.cpp
View file @
647216f2
...
...
@@ -305,6 +305,10 @@ void pkg_node::checkVolume( char *filename)
sts
=
lfu_GetVolume
(
filename
,
vol_name
,
&
vol_vid
,
&
vol_cid
,
&
vol_time
);
if
(
EVEN
(
sts
))
throw
wb_error
(
sts
);
if
(
vol_cid
==
pwr_eClass_DetachedClassVolume
)
// No check
return
;
found
=
false
;
for
(
int
i
=
0
;
i
<
(
int
)
m_volumelist
.
size
();
i
++
)
{
if
(
m_volumelist
[
i
].
m_vid
==
vol_vid
)
{
...
...
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