diff options
author | Daniil Fedotov <[email protected]> | 2016-05-05 09:47:55 +0100 |
---|---|---|
committer | Daniil Fedotov <[email protected]> | 2016-05-05 09:47:55 +0100 |
commit | cf754c142b387855f1eb2ea87025efdbdb8e3f4a (patch) | |
tree | c7115285c2bfd52c251ac2684f207ebfc1536769 /lib/eldap/src | |
parent | 33b282356b786b831fe8f5414fa60397c4c7eaf9 (diff) | |
download | otp-cf754c142b387855f1eb2ea87025efdbdb8e3f4a.tar.gz otp-cf754c142b387855f1eb2ea87025efdbdb8e3f4a.tar.bz2 otp-cf754c142b387855f1eb2ea87025efdbdb8e3f4a.zip |
indentation
Diffstat (limited to 'lib/eldap/src')
-rw-r--r-- | lib/eldap/src/eldap.erl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/eldap/src/eldap.erl b/lib/eldap/src/eldap.erl index 8994df10eb..625309271b 100644 --- a/lib/eldap/src/eldap.erl +++ b/lib/eldap/src/eldap.erl @@ -564,12 +564,12 @@ loop(Cpid, Data) -> ?MODULE:loop(Cpid, NewData); {_From, close} -> - % Ignore tcp error if connection is already closed. - try do_unbind(Data) of - {no_reply,_NewData} -> ok - catch - throw:{gen_tcp_error, _TcpErr} -> ok - end, + % Ignore tcp error if connection is already closed. + try do_unbind(Data) of + {no_reply,_NewData} -> ok + catch + throw:{gen_tcp_error, _TcpErr} -> ok + end, unlink(Cpid), exit(closed); |