diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-25 20:45:49 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-25 20:45:49 +0000 |
commit | e9b7b237c0370cd5f10f69c1c4878d464865b30b (patch) | |
tree | 908340cbe2bb5a99b7d7c24f99acfa2ebb77ad7d /src/commands.cpp | |
parent | c922299f3eb53fe9ec2213525745159ee81f6f3c (diff) |
Operhosts are now optional (in the type tag)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1520 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 0570db66d..58597c2a0 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -1737,7 +1737,8 @@ void handle_oper(char **parameters, int pcnt, userrec *user) snprintf(global,MAXBUF,"| %s %s",user->nick,TypeName); NetSendToAll(global); ConfValue("type","host",j,HostName,&config_f); - ChangeDisplayedHost(user,HostName); + if (*HostName) + ChangeDisplayedHost(user,HostName); strlcpy(user->oper,TypeName,NICKMAX); found = true; fail2 = false; |