mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
libc/gen/fts.c: fix assignment
Fixes: e59991206b fts(3): be less strict when automount does its job under us walking autofs mount (cherry picked from commit ab6a311c720e93c860d3dd4a335264d725db7a0d)
This commit is contained in:
parent
9460df3573
commit
2d1b1c1aaa
1 changed files with 1 additions and 1 deletions
|
|
@ -1166,7 +1166,7 @@ fts_safe_changedir(FTS *sp, FTSENT *p, int fd, char *path)
|
|||
}
|
||||
/* autofs might did the mount under us, accept. */
|
||||
p->fts_dev = sb.st_dev;
|
||||
p->fts_ino == sb.st_ino;
|
||||
p->fts_ino = sb.st_ino;
|
||||
}
|
||||
ret = fchdir(newfd);
|
||||
bail:
|
||||
|
|
|
|||
Loading…
Reference in a new issue