fdescfs: Supply a real value for d_type in readdir.
All the fdescfs nodes (except . and ..) appear as character devices to stat(), so DT_CHR is correct.
This commit is contained in:
parent
691f7fadcd
commit
d3045c081d
@ -538,7 +538,7 @@ fdesc_readdir(ap)
|
||||
break;
|
||||
dp->d_namlen = sprintf(dp->d_name, "%d", fcnt);
|
||||
dp->d_reclen = UIO_MX;
|
||||
dp->d_type = DT_UNKNOWN;
|
||||
dp->d_type = DT_CHR;
|
||||
dp->d_fileno = i + FD_DESC;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user