diff --git a/ChangeLog b/ChangeLog index e08e9ff..41ed0a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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... diff --git a/doc/old/README b/doc/old/README index 744f661..d3783ca 100644 --- a/doc/old/README +++ b/doc/old/README @@ -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 \ No newline at end of file diff --git a/modules/core/m_message.c b/modules/core/m_message.c index 77d4279..fc5fc9d 100644 --- a/modules/core/m_message.c +++ b/modules/core/m_message.c @@ -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); }