On 2026-07-22 12:51, Pádraig Brady wrote:
+static inline bool
+ignorable_traversal_errno (int errnum)
+{
+ return errnum == ENOENT || errnum == ENOTDIR;
+}
+I understand the ENOENT, but why the ENOTDIR? ENOTDIR says something more serious happened than a mere removal while we traversed.
