1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 20:36:38 +02:00

Use I_OnUserQuit for os_session because I_OnPreUserLogoff gets called too late, after the users server can be gone. Fix a couple other small things

This commit is contained in:
Adam
2013-05-06 22:18:38 -04:00
parent ef06226521
commit 6578829fa6
4 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -237,7 +237,7 @@ Conf::Conf() : Block("")
ot->AddCommand(str);
spacesepstream privstr(privs);
for (Anope::string str; cmdstr.GetToken(str);)
for (Anope::string str; privstr.GetToken(str);)
ot->AddPriv(str);
commasepstream inheritstr(inherits);