* traverse the entry so that symlinks to files can be opened as well

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27957 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Karsten Heimrich 2008-10-10 19:08:57 +00:00
parent 18c9bf5575
commit d034a4c9f7

View File

@ -92,7 +92,7 @@ const uint32 kMsgPopUpMenuClosed = 'pmcl';
static bool
entry_ref_is_file(const entry_ref *ref)
{
BEntry entry(ref);
BEntry entry(ref, true);
if (entry.InitCheck() != B_OK)
return false;