Eliminate colon as a valid chain delimiter

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@597 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2008-02-27 16:47:12 +00:00
parent 8ac1b9a3d8
commit 24dfee27a4

View File

@ -195,7 +195,7 @@ sub nextdestiny {
unless ($ref->{currchain}) { #If no current chain, copy the default
$ref->{currchain} = $ref->{chain};
}
my @chain = split /[,:;]/,$ref->{currchain};
my @chain = split /[,;]/,$ref->{currchain};
$ref->{currstate} = shift @chain;
$ref->{currchain}=join(',',@chain);