diff options
| author | Matthias Radestock <matthias@rabbitmq.com> | 2013-12-05 14:28:00 +0000 |
|---|---|---|
| committer | Matthias Radestock <matthias@rabbitmq.com> | 2013-12-05 14:28:00 +0000 |
| commit | 794950f70e3207fd7ea8a80d65e1a43152f1f230 (patch) | |
| tree | 6c7fc1031c586b0eb2e85de799a75777b3dd8286 /src | |
| parent | cb09e46dd8eeb798d65d953702c8a22b92cb47cd (diff) | |
| download | rabbitmq-server-git-794950f70e3207fd7ea8a80d65e1a43152f1f230.tar.gz | |
cosmetic
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_reader.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rabbit_reader.erl b/src/rabbit_reader.erl index 41640f978c..84d9882531 100644 --- a/src/rabbit_reader.erl +++ b/src/rabbit_reader.erl @@ -1064,9 +1064,9 @@ ic(user, #connection{user = U}) -> U#user.username; 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(channel_max, #connection{channel_max = ChMax}) -> ChMax; +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}). |
