diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:09 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:09 +0000 |
commit | 7ae320eaa2078bd1c4cdf061f3bcd2bd7e22f53a (patch) | |
tree | 82fcc81f84fb4d5a1138b6e6c9e077ca7d3da53d | |
parent | a06c716766db4710f0cf81b2c6c2b0bca6e2b749 (diff) |
Fix indentation.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1191 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/users.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/users.c b/src/users.c index ff42b6d9d..af9bbbd95 100644 --- a/src/users.c +++ b/src/users.c @@ -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); } |