1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-08 11:23:12 +02:00

- Call m_cap_Init() when m_cap is loaded through commands.so. Reported by nenolod.

This commit is contained in:
Nathan Phillip Brink
2012-03-06 06:16:53 +00:00
parent d4d5d46822
commit aa5fe1514d
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -2399,3 +2399,5 @@
attacked by clones then you may see some improvement in speed and/or lower
CPU usage.
- Minor documentation typos, thanks warg (#4094).
- Call m_cap_Init() when m_cap is loaded through commands.so. Reported by
nenolod.
+2
View File
@@ -126,6 +126,7 @@ extern int m_svsnolag_Init(ModuleInfo *modinfo);
extern int m_starttls_Init(ModuleInfo *modinfo);
extern int m_nopost_Init(ModuleInfo *modinfo);
extern int m_issecure_Init(ModuleInfo *modinfo);
extern int m_cap_Init(ModuleInfo *modinfo);
#ifdef GUEST
extern int m_guest_Init(ModuleInfo *modinfo);
#endif
@@ -364,6 +365,7 @@ int l_commands_Init(ModuleInfo *modinfo)
m_starttls_Init(ModCmdsInfo);
m_nopost_Init(ModCmdsInfo);
m_issecure_Init(ModCmdsInfo);
m_cap_Init(ModCmdsInfo);
#ifdef GUEST
m_guest_Init(ModCmdsInfo);
#endif