Fixed dls backwards compatability issue in host config file

This commit is contained in:
Brian Carrier 2008-11-07 21:28:39 +00:00
parent 19182803e6
commit 79ee980506
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
--------------------------- Version 2.XX --------------------------------
11/7/08: Bug Fix: Changed case management code to not error when 'dls ...'
line was encountered.
--------------------------- Version 2.20 --------------------------------
7/1/08: Update: Updated FAT sizes based on new "special" files.
7/9/08: Update: Updated NTFS processing for orphan files / removed

View File

@ -1242,7 +1242,8 @@ sub read_host_config {
# blkls entry
# blkls themname myname
elsif (/^blkls\s+($::REG_VNAME)\s+($::REG_VNAME)\s+($::REG_IMG)$/o) {
elsif ((/^blkls\s+($::REG_VNAME)\s+($::REG_VNAME)\s+($::REG_IMG)$/o) ||
(/^dls\s+($::REG_VNAME)\s+($::REG_VNAME)\s+($::REG_IMG)$/o)) {
my $i = $3;
my $par = $2;
my $me = $1;