From 24dfee27a40cb10947cf0fc3b97d9a2400242030 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Wed, 27 Feb 2008 16:47:12 +0000 Subject: [PATCH] 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 --- xCAT-server-2.0/lib/xcat/plugins/destiny.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server-2.0/lib/xcat/plugins/destiny.pm b/xCAT-server-2.0/lib/xcat/plugins/destiny.pm index 6892e01f7..dc399b262 100644 --- a/xCAT-server-2.0/lib/xcat/plugins/destiny.pm +++ b/xCAT-server-2.0/lib/xcat/plugins/destiny.pm @@ -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);