getHostEntry is just an infinite loop
Open
- Dominant language
- Haskell
- Stars
- 7
- Forks
- 8
- PR merge metrics
- No merged PRs in 30d
Description
The current definition of `getHostEntry` is
```
getHostEntry :: IO HostEntry
getHostEntry = withLock getHostEntry
```
which is just an infinite loop. I assume it should be
```
getHostEntry :: IO HostEntry
getHostEntry = withLock getHostEntry'
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.