diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-08-08 15:10:48 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-08-08 15:10:48 +0200 |
commit | 9962840222b6886f7653fc64443f19ebd661cc63 (patch) | |
tree | 67686d0db5f8806a114a9b634f6e67cf9b70f7fa /include | |
parent | 1f38b9adb576580d8e8638fefc5c7cb157f90a5c (diff) |
Fix a couple of issues
- Wrong doc for Snomask::GetDescription()
- Incorrect idle time when WHOISing remote users
- String + int = garbage
- Remote MODE commands (user mode changes) being broadcast in addition to being forwarded
- Incorrect revision being shown
Diffstat (limited to 'include')
-rw-r--r-- | include/modules.h | 2 | ||||
-rw-r--r-- | include/snomasks.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/modules.h b/include/modules.h index 710a39193..d13ff58b0 100644 --- a/include/modules.h +++ b/include/modules.h @@ -1419,7 +1419,7 @@ struct AllModuleList { { \ return new y; \ } \ - extern "C" const char inspircd_src_version[] = VERSION " r" REVISION; + extern "C" const char inspircd_src_version[] = VERSION " " REVISION; #endif #define COMMAND_INIT(c) MODULE_INIT(CommandModule<c>) diff --git a/include/snomasks.h b/include/snomasks.h index db3989225..df4faab47 100644 --- a/include/snomasks.h +++ b/include/snomasks.h @@ -59,8 +59,8 @@ class Snomask void Flush(); /** Returns the description of this snomask - * @param remote If true the description of the uppercase (remote) variant of this snomask - * will be returned (i.e.: "REMOTE" will be prepended to the description). + * @param letter The letter of this snomask. If uppercase, the description of the remote + * variant of this snomask will be returned (i.e.: "REMOTE" will be prepended to the description). * @return The description of this snomask */ std::string GetDescription(char letter) const; |