Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't use dirent's d_reclen as if it were d_namlen. (#128)
This code was treating the `d_reclen` incorrectly from some of the original old porting work. It is not the same as `d_namlen` and `d_namlen` is not widely supported or standard. It should be using `strlen(d_name)`. This addresses an issue mentioned in Interlisp/medley#103.
- Loading branch information