diff options
author | Gabor Pali <pgj@FreeBSD.org> | 2014-08-10 22:34:50 +0000 |
---|---|---|
committer | Gabor Pali <pgj@FreeBSD.org> | 2014-08-10 22:34:50 +0000 |
commit | cc555442337c7591ab5c3fd19ad8e3e185a256b0 (patch) | |
tree | a6a0dfa4f440949889fc7b609c83f74555f6894e /games | |
parent | 5e492199d1e024a681c6d21087c8d948cb3b7bc3 (diff) |
Notes
Diffstat (limited to 'games')
-rw-r--r-- | games/hedgewars/files/patch-gameServer__Actions.hs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games/hedgewars/files/patch-gameServer__Actions.hs b/games/hedgewars/files/patch-gameServer__Actions.hs new file mode 100644 index 000000000000..9c02e8860bc9 --- /dev/null +++ b/games/hedgewars/files/patch-gameServer__Actions.hs @@ -0,0 +1,11 @@ +--- ./gameServer/Actions.hs.orig 2014-01-08 17:25:17.000000000 +0100 ++++ ./gameServer/Actions.hs 2014-08-10 23:44:17.631500480 +0200 +@@ -562,7 +562,7 @@ + si <- gets serverInfo + newClId <- io $ do + ci <- addClient rnc cl +- _ <- Exception.mask (forkIO . clientRecvLoop (clientSocket cl) (coreChan si) (sendChan cl) ci) ++ _ <- Exception.mask (\x -> forkIO $ clientRecvLoop (clientSocket cl) (coreChan si) (sendChan cl) ci x) + + infoM "Clients" (show ci ++ ": New client. Time: " ++ show (connectTime cl)) + |