diff options
-rw-r--r-- | p11p-daemon/src/p11p_server.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p11p-daemon/src/p11p_server.erl b/p11p-daemon/src/p11p_server.erl index 52e5a4c..a6e08a9 100644 --- a/p11p-daemon/src/p11p_server.erl +++ b/p11p-daemon/src/p11p_server.erl @@ -58,7 +58,7 @@ handle_call(Call, _From, State) -> {reply, unhandled, State}. handle_cast(accept, State = #state{tokname = TokName, sockpath = SocketPath, socket = ListenSocket}) -> - %% Blocking until client connects or timeout fires -- without a + %% Blocking until client connects or timeout fires. Without a %% timeout our supervisor cannot terminate us. case gen_tcp:accept(ListenSocket, 900) of {ok, Sock} -> |