fixed up global messages from services... Moved some files around

This commit is contained in:
fishwaldo 2002-10-25 11:13:08 +00:00
parent 3cf7d891bb
commit f7b0b47853
3 changed files with 6 additions and 11 deletions

View file

@ -15,6 +15,7 @@ Symbols are:
(F) - Fixed a problem with userhost cloaking (Hopefully) (F) - Fixed a problem with userhost cloaking (Hopefully)
(F) - segv handling code added (F) - segv handling code added
(F) - Fixed up compile warnings (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 * NeoIRCd Version 0.9.4 - 24th Sept, 2002 - Fish
(F) - Changed HiddenHost System to Use Ultimates version instead... (F) - Changed HiddenHost System to Use Ultimates version instead...

View file

@ -1,8 +1,2 @@
This stuff is so ancient it's not even funny anymore. Take it with The stuff in here was in the original Hybrid Distro....
a grain of salt when you read it. --JRL Most likely it doesn't apply to NEOIRCD
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

View file

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA * 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" #include "stdinc.h"
@ -122,7 +122,7 @@ _moddeinit(void)
mod_del_cmd(&notice_msgtab); mod_del_cmd(&notice_msgtab);
} }
const char *_version = "$Revision: 1.11 $"; const char *_version = "$Revision: 1.12 $";
#endif #endif
/* /*
@ -399,7 +399,7 @@ build_target_list(int p_or_n, char *command, struct Client *client_p,
continue; 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); handle_opers(p_or_n, command, client_p, source_p, nick, text);
} }