From 1498b668d2f8dc4eef3254dbdb2eb015a271fcf2 Mon Sep 17 00:00:00 2001 From: shugo Date: Tue, 5 Aug 2008 07:42:45 +0000 Subject: * lib/net/ftp.rb (chdir): handle 5xx errors correctly. fixed [ruby-core:18057]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18370 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/net/ftp.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/net') diff --git a/lib/net/ftp.rb b/lib/net/ftp.rb index 855684de89..436ccd937f 100644 --- a/lib/net/ftp.rb +++ b/lib/net/ftp.rb @@ -722,9 +722,9 @@ module Net begin voidcmd("CDUP") return - rescue FTPPermError - if $![0, 3] != "500" - raise FTPPermError, $! + rescue FTPPermError => e + if e.message[0, 3] != "500" + raise e end end end -- cgit v1.2.3