aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsrc/bfind.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bfind.py b/src/bfind.py
index 342e002..abf7284 100755
--- a/src/bfind.py
+++ b/src/bfind.py
@@ -65,7 +65,7 @@ while len(queue) > 0:
continue
visited_name.add(os.path.realpath(path))
if not xdev:
- if os.stat(path).st_dev != start_dev: # TODO make sure there is not symlinking problems
+ if os.stat(path).st_dev != start_dev: # TODO make sure there is not symlinking problems # TODO fails on broken links
continue
sys.stdout.buffer.write(path.encode('utf-8'))
sys.stdout.buffer.write(ending)