Fix recursive call to find_by_sid

bug/bundler_fix
jvazquez-r7 2014-11-03 14:25:29 -06:00
parent 930b482412
commit 41800163dd
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ class DirEntry
return de
end
@children.each { |cde|
ret = find_by_sid(cde, sid)
ret = find_by_sid(sid, cde)
if (ret)
return ret
end