* lib/net/ftp.rb (login): raise FTPReplyError if passwd or acct

is not supplied.  fixed [ruby-core:18058].


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18416 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2008-08-07 11:55:13 +00:00
Родитель 0ff8385bf4
Коммит 16a24188cd
2 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Thu Aug 7 20:52:08 2008 Shugo Maeda <shugo@ruby-lang.org>
* lib/net/ftp.rb (login): raise FTPReplyError if passwd or acct
is not supplied. fixed [ruby-core:18058].
Thu Aug 7 18:01:44 2008 Akinori MUSHA <knu@iDaemons.org>
* misc/ruby-mode.el (ruby-imenu-create-index-in-block): Fix the

Просмотреть файл

@ -396,9 +396,11 @@ module Net
synchronize do
resp = sendcmd('USER ' + user)
if resp[0] == ?3
raise FTPReplyError, resp if passwd.nil?
resp = sendcmd('PASS ' + passwd)
end
if resp[0] == ?3
raise FTPReplyError, resp if acct.nil?
resp = sendcmd('ACCT ' + acct)
end
end