From d9ba1cc8e8a088db1f5be738e3352841e715d857 Mon Sep 17 00:00:00 2001 From: wanghuaz Date: Thu, 5 Nov 2009 05:49:11 +0000 Subject: [PATCH] Remove the end sequences which makes issues if the input containes of ~ git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4478 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/PPCcli.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl-xCAT/xCAT/PPCcli.pm b/perl-xCAT/xCAT/PPCcli.pm index 3ab6731ef..3e5132038 100644 --- a/perl-xCAT/xCAT/PPCcli.pm +++ b/perl-xCAT/xCAT/PPCcli.pm @@ -558,9 +558,9 @@ sub mkvterm { ########################################## # Success... # Give control to the user and intercept - # the Ctrl-X (\030), and "~." sequences. + # the Ctrl-X (\030). ########################################## - my $escape = "\030|~."; + my $escape = "\030"; $ssh->send( "\r" ); $ssh->interact( \*STDIN, $escape );