mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/fileutils (fu_stream_blksize): wrong logial condition.
(and -> or). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3530 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a068f1cc07
commit
8d5ad9c1b3
2 changed files with 6 additions and 1 deletions
|
@ -725,7 +725,7 @@ module FileUtils
|
|||
streams.each do |s|
|
||||
next unless s.respond_to?(:stat)
|
||||
size = s.stat.blksize
|
||||
return size unless size.nil? and size.zero?
|
||||
return size unless size.nil? or size.zero?
|
||||
end
|
||||
1024
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue