diff options
author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-06-04 02:17:58 +0000 |
---|---|---|
committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-06-04 02:17:58 +0000 |
commit | 2cc4cd016530cb31d09aa3aa3fa8d3de7d63550c (patch) | |
tree | 3cad2e0b551a24ec2d042c5775bf072ab393bddb /src/users.c | |
parent | 9abdb4e2e96b7b7699ce3ec66633bcc8f14e025d (diff) |
Only enable vhosts automatically if the user doesn't already have the vhost set
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2998 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/users.c')
-rw-r--r-- | src/users.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/users.c b/src/users.c index 4efc355b4..059d598b4 100644 --- a/src/users.c +++ b/src/users.c @@ -158,7 +158,7 @@ const std::string &User::GetCloakedHost() const const std::string &User::GetUID() const { - return this->uid; + return this->uid; } @@ -166,7 +166,7 @@ void User::SetVIdent(const std::string &sident) { this->vident = sident; - Alog(LOG_DEBUG) << this->nick << " changed ident to " << sident; + Alog(LOG_DEBUG) << this->nick << " changed vident to " << sident; this->UpdateHost(); } |