summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klishin <michael@rabbitmq.com>2013-11-29 15:51:58 +0400
committerMichael Klishin <michael@rabbitmq.com>2013-11-29 15:51:58 +0400
commit9ad8491c3e1163da3f8e4fc8776c3ff68e5d2674 (patch)
tree05e1dbdaa7abd9dfafdc650e15b75308ad20bb53
parentf53dbd93602c280b4a93f5eeb8fa1094c3ab16b2 (diff)
downloadrabbitmq-server-9ad8491c3e1163da3f8e4fc8776c3ff68e5d2674.tar.gz
Cosmetics
-rw-r--r--src/rabbit_reader.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_reader.erl b/src/rabbit_reader.erl
index 957233f6..cfe80d12 100644
--- a/src/rabbit_reader.erl
+++ b/src/rabbit_reader.erl
@@ -1064,8 +1064,8 @@ ic(vhost, #connection{vhost = VHost}) -> VHost;
ic(timeout, #connection{timeout_sec = Timeout}) -> Timeout;
ic(frame_max, #connection{frame_max = FrameMax}) -> FrameMax;
ic(channel_max, #connection{channel_max = ChannelMax}) -> ChannelMax;
-ic(client_properties, #connection{client_properties = CP}) -> CP;
-ic(auth_mechanism, #connection{auth_mechanism = none}) -> none;
+ic(client_properties, #connection{client_properties = CP}) -> CP;
+ic(auth_mechanism, #connection{auth_mechanism = none}) -> none;
ic(auth_mechanism, #connection{auth_mechanism = {Name, _Mod}}) -> Name;
ic(Item, #connection{}) -> throw({bad_argument, Item}).