1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-12 19:14:46 +02:00

fixed a little typo in umode

This commit is contained in:
codemastr
2000-08-02 17:37:32 +00:00
parent 7f96ccb01e
commit 58f7ef9ca8
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -504,3 +504,5 @@
- Fixed the 'ulimit core size failed' bug (now checks whether it should
set the core size to unlimited in ./Config
- +u now lists +a and +q people, and sends JOINs/PARTs to +a and +q people
- Fixed a /mode (umode) typo where it said no such channel rather than no such nick,
reported by llthangel
+1 -1
View File
@@ -4154,7 +4154,7 @@ int m_umode(cptr, sptr, parc, parv)
if (!(acptr = find_person(parv[1], NULL)))
{
if (MyConnect(sptr))
sendto_one(sptr, err_str(ERR_NOSUCHCHANNEL),
sendto_one(sptr, err_str(ERR_NOSUCHNICK),
me.name, parv[0], parv[1]);
return 0;
}