Index: ChangeLog
===================================================================
RCS file: /cvsroot/undernet-ircu/ircu2.10/ChangeLog,v
retrieving revision 1.290.2.124.2.5
diff -u -r1.290.2.124.2.5 ChangeLog
--- ChangeLog	4 Oct 2002 04:03:53 -0000	1.290.2.124.2.5
+++ ChangeLog	6 Oct 2002 04:27:00 -0000
@@ -1,4 +1,9 @@
+2002-10-05  Zoot <zoot@gamesnet.net>
+
+	* ircd/ircd_relay.c (relay_directed_message): fix a bug that had
+	completely broken directed messages
+	
 2002-10-05  Zoot <zoot@gamesnet.net>
 
 	* ircd/m_account.c (ms_account): check the length of the account;
 
Index: ircd/ircd_relay.c
===================================================================
RCS file: /cvsroot/undernet-ircu/ircu2.10/ircd/ircd_relay.c,v
retrieving revision 1.8.2.1.2.1
diff -u -r1.8.2.1.2.1 ircd_relay.c
--- ircd/ircd_relay.c	3 Oct 2002 05:36:59 -0000	1.8.2.1.2.1
+++ ircd/ircd_relay.c	6 Oct 2002 04:27:00 -0000
@@ -160,7 +160,7 @@
   assert(0 != server);
 
   if ((acptr = FindServer(server + 1)) == NULL ||
-      !IsChannelService(acptr)) {
+      !IsService(acptr)) {
     send_reply(sptr, ERR_NOSUCHNICK, name);
     return;
   }

