fixed up global messages from services... Moved some files around
This commit is contained in:
parent
3cf7d891bb
commit
f7b0b47853
3 changed files with 6 additions and 11 deletions
|
@ -15,6 +15,7 @@ Symbols are:
|
|||
(F) - Fixed a problem with userhost cloaking (Hopefully)
|
||||
(F) - segv handling code added
|
||||
(F) - Fixed up compile warnings
|
||||
(F) - gah, IsServices(source_p) in global notices would help also
|
||||
|
||||
* NeoIRCd Version 0.9.4 - 24th Sept, 2002 - Fish
|
||||
(F) - Changed HiddenHost System to Use Ultimates version instead...
|
||||
|
|
|
@ -1,8 +1,2 @@
|
|||
This stuff is so ancient it's not even funny anymore. Take it with
|
||||
a grain of salt when you read it. --JRL
|
||||
|
||||
The Bill Wisner example.conf has been updated, I have also included
|
||||
Helen Roses example.conf as example.conf.trillian (taken from
|
||||
the CSR tree ) as it is superiour in some respects to Bill's version.
|
||||
Updated as well to reflect hybrid . --Dianora
|
||||
|
||||
The stuff in here was in the original Hybrid Distro....
|
||||
Most likely it doesn't apply to NEOIRCD
|
|
@ -19,7 +19,7 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||||
* USA
|
||||
*
|
||||
* $Id: m_message.c,v 1.11 2002/10/23 03:53:22 fishwaldo Exp $
|
||||
* $Id: m_message.c,v 1.12 2002/10/25 11:13:08 fishwaldo Exp $
|
||||
*/
|
||||
|
||||
#include "stdinc.h"
|
||||
|
@ -122,7 +122,7 @@ _moddeinit(void)
|
|||
mod_del_cmd(¬ice_msgtab);
|
||||
}
|
||||
|
||||
const char *_version = "$Revision: 1.11 $";
|
||||
const char *_version = "$Revision: 1.12 $";
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
@ -399,7 +399,7 @@ build_target_list(int p_or_n, char *command, struct Client *client_p,
|
|||
continue;
|
||||
}
|
||||
|
||||
if(IsOper(source_p) && ((*nick == '$') || strchr(nick, '@')))
|
||||
if((IsOper(source_p) || IsServices(source_p)) && ((*nick == '$') || strchr(nick, '@')))
|
||||
{
|
||||
handle_opers(p_or_n, command, client_p, source_p, nick, text);
|
||||
}
|
||||
|
|
Reference in a new issue