cosmetic: ipa_proto.erl: Fix trailing whitespace

Change-Id: I8b742ae041670452745d5f0022e49b1bed0f1cf5
This commit is contained in:
Pau Espin 2024-02-27 21:15:01 +01:00
parent 3c6cdc5a53
commit bb49f95b7f
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
% ip.access IPA multiplex protocol
% ip.access IPA multiplex protocol
% (C) 2010,2012,2019 by Harald Welte <laforge@gnumonks.org>
% (C) 2010 by On-Waves
@ -50,12 +50,12 @@
register_socket(Socket) ->
IpaPid = spawn(?MODULE, init_sock, [Socket, self()]),
% synchronously wait for init_sock to be done
receive
receive
{ipa_init_sock_done, Socket} ->
% assign ownership of the socket to the new IPA handler process
gen_tcp:controlling_process(Socket, IpaPid),
{ok, IpaPid}
after
after
?TIMEOUT ->
{error, timeout}
end.