diff options
author | shugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-05 07:42:45 +0000 |
---|---|---|
committer | shugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-05 07:42:45 +0000 |
commit | 0116699507500c0886689d5742312b45016de06a (patch) | |
tree | d8fc6570e7e31ff494706fd75ed832089f5d1510 /lib/net | |
parent | 04ed051d4128f17af30186249e368acbf9a766a8 (diff) | |
download | ruby-0116699507500c0886689d5742312b45016de06a.tar.gz ruby-0116699507500c0886689d5742312b45016de06a.tar.xz ruby-0116699507500c0886689d5742312b45016de06a.zip |
* lib/net/ftp.rb (chdir): handle 5xx errors correctly.
fixed [ruby-core:18057].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18370 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net')
-rw-r--r-- | lib/net/ftp.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/net/ftp.rb b/lib/net/ftp.rb index 855684de8..436ccd937 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 |