<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> ------------------------------------------------------------------------
r21021 | vda | 2008-02-14 13:55:58 -0600 (Thu, 14 Feb 2008) | 3 lines
Changed paths:
   M /trunk/busybox/libbb/lineedit.c

libbb: filename completion should match dangling symlinks too


 ------------------------------------------------------------------------
Index: libbb/lineedit.c
===================================================================
--- libbb/lineedit.c	(revision 21020)
+++ libbb/lineedit.c	(revision 21021)
@@ -522,7 +522,7 @@
 			}
 			found = concat_path_file(paths[i], str_found);
 			/* hmm, remover in progress? */
-			if (stat(found, &amp;st) &lt; 0)
+			if (lstat(found, &amp;st) &lt; 0)
 				goto cont;
 			/* find with dirs? */
 			if (paths[i] != dirbuf)
</pre></body></html>