Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2016-01-15 15:46:07 +0300
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2016-01-15 15:46:07 +0300
commitc8bc6cecdc97c09173b5358b4f582f5c6fe850ad (patch)
tree06af434d441c5976cc4bf40912a7bad24e1f80a6 /include
parent33b67f54baf5ed813c5bb7564deee0f71dff8631 (diff)
Fix records in mod_muc.hrl
Diffstat (limited to 'include')
-rw-r--r--include/mod_muc.hrl6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mod_muc.hrl b/include/mod_muc.hrl
index 0d3f7baf7..8d0c1b09d 100644
--- a/include/mod_muc.hrl
+++ b/include/mod_muc.hrl
@@ -24,9 +24,9 @@
opts = [] :: list() | '_'}).
-record(muc_online_room,
- {name_host = {<<"">>, <<"">>} :: {binary(), binary()} | {'_', '$1'} | '$1' | '_',
- timestamp = p1_time_compat:timestamp() :: erlang:timestamp() | '_',
- pid = self() :: pid() | '$1' | '$2' | '_'}).
+ {name_host = {<<"">>, <<"">>} :: {binary(), binary()} | '$1' |
+ {'_', binary()} | '_',
+ pid = self() :: pid() | '$2' | '_' | '$1'}).
-record(muc_registered,
{us_host = {{<<"">>, <<"">>}, <<"">>} :: {{binary(), binary()}, binary()} | '$1',