1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 07:56:37 +02:00

Fix indentation.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1191 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Robin Burchell w00t@inspircd.org
2008-09-30 18:45:09 +00:00
parent a06c716766
commit 7ae320eaa2
+5 -5
View File
@@ -125,12 +125,12 @@ void User::SetIdent(const std::string &ident)
if (ident.empty())
throw "empty ident in SetIdent";
if (this->vident)
free(this->vident);
this->vident = sstrdup(ident.c_str());
if (this->vident)
free(this->vident);
this->vident = sstrdup(ident.c_str());
if (debug)
alog("debug: %s changed ident to %s", this->nick, username);
if (debug)
alog("debug: %s changed ident to %s", this->nick, username);
update_host(this);
}