Commit b7e77c07 authored by claes's avatar claes

ClassVolumeLoad of base loadfiles not distributed

parent 851a0fa3
/*
* Proview $Id: wb_pkg.cpp,v 1.12 2005-12-20 12:03:54 claes Exp $
* Proview $Id: wb_pkg.cpp,v 1.13 2006-02-08 13:56:41 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -180,6 +180,14 @@ void wb_pkg::readConfig()
for ( int j = 0; j < volcount; j++) {
char dir[80];
if ( (vollist[j] >= cdh_cManufactClassVolMin &&
vollist[j] <= cdh_cManufactClassVolMax) ||
(vollist[j] >= cdh_cSystemClassVolMin &&
vollist[j] <= cdh_cSystemClassVolMax)) {
// Base volume, skip
continue;
}
strcpy( dir, "$pwrp_load/");
sprintf( fname, "%s%s.dbs", dir, cdh_Low( (char *)(volnamelist + j)));
n.checkVolume( fname);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment