summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/account.h4
-rw-r--r--include/channels.h2
-rw-r--r--include/regchannel.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/include/account.h b/include/account.h
index a773f77a6..be130ea95 100644
--- a/include/account.h
+++ b/include/account.h
@@ -53,7 +53,7 @@ public:
Anope::string last_usermask;
/* Last uncloaked usermask, requires nickserv/auspex to see */
Anope::string last_realhost;
- time_t time_registered = Anope::CurTime;
+ time_t registered = Anope::CurTime;
time_t last_seen = Anope::CurTime;
/* Account this nick is tied to. Multiple nicks can be tied to a single account. */
@@ -149,7 +149,7 @@ public:
/* Last time an email was sent to this user */
time_t lastmail = 0;
/* The time this account was registered */
- time_t time_registered = Anope::CurTime;
+ time_t registered = Anope::CurTime;
MemoInfo memos;
std::map<Anope::string, Anope::string> last_modes;
diff --git a/include/channels.h b/include/channels.h
index 08f8756db..9d1c5b738 100644
--- a/include/channels.h
+++ b/include/channels.h
@@ -48,7 +48,7 @@ public:
/* Set if this channel is registered. ci->c == this. Contains information relevant to the registered channel */
Serialize::Reference<ChannelInfo> ci;
/* When the channel was created */
- time_t creation_time;
+ time_t created;
/* If the channel has just been created in a netjoin */
bool syncing = false;
/* Is configured in the conf as a channel bots should be in */
diff --git a/include/regchannel.h b/include/regchannel.h
index 156b48628..6cde7acf6 100644
--- a/include/regchannel.h
+++ b/include/regchannel.h
@@ -79,7 +79,7 @@ public:
Anope::string name; /* Channel name */
Anope::string desc;
- time_t time_registered;
+ time_t registered;
time_t last_used;
Anope::string last_topic; /* The last topic that was set on this channel */