1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-09 03:23:13 +02:00

- Removed the ERR_NOTONCHANNEL message in numeric.c =P

This commit is contained in:
stskeeps
2000-08-25 17:52:44 +00:00
parent cccda143b1
commit d3cfcdc6b0
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -579,3 +579,4 @@
- Added define PROPER_COREDUMP, will not launch s_segv when done and make
proper coredumps
- Fixed the G:line bugs, i hope - moved tkl_sweep into a loopstruct
- Removed the ERR_NOTONCHANNEL message =P
+3 -3
View File
@@ -66,13 +66,13 @@ int do_numeric(numeric, cptr, sptr, parc, parv)
if (numeric < 100)
numeric += 100;
if (numeric == ERR_NOTONCHANNEL)
/* if (numeric == ERR_NOTONCHANNEL)
if (!MyClient(sptr) && IsServer(sptr))
{
sendto_umode(UMODE_EYES, "Recieved ERR_NOTONCHANNEL from remote server %s. Possible desynch, contact UnrealIRCd Team (%s)",
sptr->name, backupbuf);
}
*/
/*
** Prepare the parameter portion of the message into 'buffer'.
** (Because the buffer is twice as large as the message buffer
@@ -128,7 +128,7 @@ int do_numeric(numeric, cptr, sptr, parc, parv)
sendto_prefix_one(acptr, sptr, ":%s %d %s%s",
parv[0], numeric, nick, buffer);
}
else if ((acptr = find_server(nick, (aClient *)NULL)))
else if ((acptr = find_server_quick(nick)))
{
if (!IsMe(acptr) && acptr->from != cptr)
sendto_prefix_one(acptr, sptr, ":%s %d %s%s",