From b286429bd1eda8b7e1d3eff7af6ab3794f5fb99d Mon Sep 17 00:00:00 2001 From: sakolish Date: Thu, 17 Jan 2008 16:58:07 +0000 Subject: [PATCH] Moved "$IO::Socket::SSL::VERSION = undef" to Line #37 git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@284 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server-2.0/lib/xcat/plugins/fsp.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server-2.0/lib/xcat/plugins/fsp.pm b/xCAT-server-2.0/lib/xcat/plugins/fsp.pm index 54c352b8d..58a9bb051 100644 --- a/xCAT-server-2.0/lib/xcat/plugins/fsp.pm +++ b/xCAT-server-2.0/lib/xcat/plugins/fsp.pm @@ -34,13 +34,13 @@ sub process_request { # uses that if so. If not, it first tries Net::SSL, # then IO::Socket::SSL only if that cannot be loaded. ####################################################### + $IO::Socket::SSL::VERSION = undef; eval { require Net::SSL }; if ( $@ ) { my $callback = $_[1]; $callback->( {data=>[$@]} ); return(1); } - $IO::Socket::SSL::VERSION = undef; xCAT::PPC::process_request(__PACKAGE__,@_); }