mirror of
https://github.com/anope/anope.git
synced 2026-06-28 18:36:39 +02:00
Made anoperc stop/restart send the cycleonglobal, and fixed logfiles to be opened with append not truncate
This commit is contained in:
+1
-1
@@ -253,7 +253,7 @@ class CoreExport Channel : public Extensible, public Flags<ChannelFlags>
|
||||
* @param mode the modes
|
||||
* @param EnforceMLock true to enforce mlock
|
||||
*/
|
||||
void SetModesInternal(User *setter, const Anope::string &modes, bool EnforceMLock = false);
|
||||
void SetModesInternal(User *setter, const Anope::string &mode, bool EnforceMLock = false);
|
||||
|
||||
/** Kick a user from a channel internally
|
||||
* @param source The sender of the kick
|
||||
|
||||
+5
-4
@@ -175,7 +175,8 @@ void Channel::JoinUser(User *user)
|
||||
}
|
||||
}
|
||||
|
||||
if (update_ts)
|
||||
/* Update the TS, unless I'm joining a bot already */
|
||||
if (update_ts && user->server != Me)
|
||||
{
|
||||
/* Send the updated TS */
|
||||
if (!this->ci->bi || !this->FindUser(this->ci->bi))
|
||||
@@ -831,9 +832,9 @@ void Channel::SetModes(BotInfo *bi, bool EnforceMLock, const char *cmodes, ...)
|
||||
* @param mode the modes
|
||||
* @param EnforceMLock true to enforce mlock
|
||||
*/
|
||||
void Channel::SetModesInternal(User *setter, const Anope::string &modes, bool EnforceMLock)
|
||||
void Channel::SetModesInternal(User *setter, const Anope::string &mode, bool EnforceMLock)
|
||||
{
|
||||
spacesepstream sep_modes(modes);
|
||||
spacesepstream sep_modes(mode);
|
||||
Anope::string m;
|
||||
|
||||
sep_modes.GetToken(m);
|
||||
@@ -897,7 +898,7 @@ void Channel::SetModesInternal(User *setter, const Anope::string &modes, bool En
|
||||
this->RemoveModeInternal(cm, token, EnforceMLock);
|
||||
}
|
||||
else
|
||||
Log() << "warning: Channel::SetModesInternal() recieved more modes requiring params than params, modes: " << modes;
|
||||
Log() << "warning: Channel::SetModesInternal() recieved more modes requiring params than params, modes: " << mode;
|
||||
}
|
||||
|
||||
if (setter)
|
||||
|
||||
+1
-1
@@ -93,7 +93,7 @@ static inline Anope::string CreateLogName(const Anope::string &file, time_t t =
|
||||
return "logs/" + file + "." + GetLogDate(t);
|
||||
}
|
||||
|
||||
LogFile::LogFile(const Anope::string &name) : filename(name), stream(name.c_str(), std::ios_base::out)
|
||||
LogFile::LogFile(const Anope::string &name) : filename(name), stream(name.c_str(), std::ios_base::out | std::ios_base::app)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
+4
-1
@@ -277,6 +277,9 @@ void sighandler(int signum)
|
||||
|
||||
Log() << "Received " << strsignal(signum) << " signal (" << signum << "), exiting.";
|
||||
|
||||
if (Config->GlobalOnCycle)
|
||||
oper_global("", "%s", Config->GlobalOnCycleMessage.c_str());
|
||||
|
||||
expire_all();
|
||||
save_databases();
|
||||
default:
|
||||
@@ -489,7 +492,7 @@ int main(int ac, char **av, char **envp)
|
||||
User *u = it->second;
|
||||
++it;
|
||||
|
||||
if (!findbot(u->nick))
|
||||
if (u->server != Me)
|
||||
delete u;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user