yaffs The yaffs browser's st.st_mode bug has now been fixed
authorTimothy Manning <tfhmanning@gmail.com>
Thu, 7 Oct 2010 02:10:27 +0000 (15:10 +1300)
committerTimothy Manning <tfhmanning@gmail.com>
Thu, 7 Oct 2010 04:03:45 +0000 (17:03 +1300)
commitd2722819ebc5cb10f0de7998709cd7a087ea1301
tree6ad20727e0af856dc857d095c5412711f0bede9b
parent00302ec53728a32022e3cb15123ed7192525ae68
yaffs The yaffs browser's st.st_mode bug has now been fixed

the st.st_mode returning 0 for a symlink was caused by:
result = yaffs_stat(fullname,byref(st))
been used insted of:
            result = yaffs_lstat(fullname,byref(st))
changing to the latter fixed this bug.
Everything works.
Signed-off-by: Timothy Manning <tfhmanning@gmail.com>
direct/python/yaffs_browser.py