From 4fbba30ba06bd89b01fd7ecf47440c156debfc93 Mon Sep 17 00:00:00 2001 From: lissav Date: Wed, 14 Jan 2009 15:17:56 +0000 Subject: [PATCH] fix split in line 2130 git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2600 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/DSHCLI.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl-xCAT/xCAT/DSHCLI.pm b/perl-xCAT/xCAT/DSHCLI.pm index 34f98c07b..740592579 100644 --- a/perl-xCAT/xCAT/DSHCLI.pm +++ b/perl-xCAT/xCAT/DSHCLI.pm @@ -2127,8 +2127,8 @@ sub config_dsh && xCAT::MsgUtils->message("I", $rsp, $::CALLBACK); # Check devicetype attr and try to load device configuration - $$options{'devicetype'} = $$options{'devicetype'} || $ENV{'DEVICETYPE'} || u -ndef; + $$options{'devicetype'} = + $$options{'devicetype'} || $ENV{'DEVICETYPE'} || undef; if ( $$options{'devicetype'} ) { $ENV{'DEVICETYPE'} = $$options{'devicetype'};