From 2cc4cd016530cb31d09aa3aa3fa8d3de7d63550c Mon Sep 17 00:00:00 2001 From: Adam- Date: Fri, 4 Jun 2010 02:17:58 +0000 Subject: 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 --- src/protocol/unreal32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/protocol') diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 131989509..7cf9b26f5 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -810,7 +810,7 @@ int anope_event_setident(const char *source, int ac, const char **av) return MOD_CONT; } - u->SetIdent(av[0]); + u->SetVIdent(av[0]); return MOD_CONT; } int anope_event_chgident(const char *source, int ac, const char **av) @@ -827,7 +827,7 @@ int anope_event_chgident(const char *source, int ac, const char **av) return MOD_CONT; } - u->SetIdent(av[1]); + u->SetVIdent(av[1]); return MOD_CONT; } -- cgit