Skip to content
Snippets Groups Projects
Commit 4f6a4e25 authored by Jens Nolte's avatar Jens Nolte
Browse files

Use withFdSocket instead of setCloseOnExecIfNeeded

parent 85999aa4
No related branches found
No related tags found
No related merge requests found
......@@ -213,8 +213,7 @@ listenUnixSocket options@MainOptions{verbose} bar commandHandler = do
socketExists <- doesFileExist socketPath
when socketExists $ removeFile socketPath
sock <- socket AF_UNIX Stream defaultProtocol
-- TODO: unsafe probably not what we want
setCloseOnExecIfNeeded =<< unsafeFdSocket sock
withFdSocket sock setCloseOnExecIfNeeded
bind sock (SockAddrUnix socketPath)
listen sock 5
forever $ do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment