From 932bd2d405549a768f4bf1511784e53015488f0e Mon Sep 17 00:00:00 2001 From: nott Date: Thu, 11 Dec 2008 17:58:37 +0000 Subject: [PATCH] Fix bogus error message from rmdef. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2542 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/DBobjectdefs.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/DBobjectdefs.pm b/xCAT-server/lib/xcat/plugins/DBobjectdefs.pm index 921f69ce2..2102a6ba7 100644 --- a/xCAT-server/lib/xcat/plugins/DBobjectdefs.pm +++ b/xCAT-server/lib/xcat/plugins/DBobjectdefs.pm @@ -2764,7 +2764,7 @@ sub defrm # make a new "groups" list for the node without the # group that is being removed my $first = 1; - my $newgrps; + my $newgrps = ""; foreach my $grp (@gprslist) { chomp($grp); @@ -2780,7 +2780,7 @@ sub defrm { $newgrps .= ","; } - $newgrps .= $grp; + $newgrps .="$grp"; $first = 0; }