1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-10 01:43:12 +02:00

Fixed the NickServ sets mode +creep SVS2MODE bug

This commit is contained in:
stskeeps
2000-06-04 12:24:20 +00:00
parent 0a2e7468d0
commit afcea0d1ec
2 changed files with 4 additions and 2 deletions
+1
View File
@@ -346,3 +346,4 @@
- Fixed a bug that prolly was fixed by Potvin, but was "not fixed correctly"
- Fixed a crash problem in register_user and most likely fixed the "strange
vhost" thing, (was a dumb bug, mising ircsprintf)
- Fixed the *** NickServ sets mode +creep SVS2MODE bug..
+3 -2
View File
@@ -4564,8 +4564,9 @@ setmodey:
sendto_serv_butone_token(cptr, parv[0], MSG_SVS2MODE,
TOK_SVS2MODE, "%s %s", parv[1], parv[2]);
sendto_one(acptr, ":%s MODE %s :%s", parv[0], parv[1], parv[2]);
send_umode(NULL, sptr, setflags, ALL_UMODES, buf);
if (MyClient(sptr))
sendto_one(sptr, ":%s MODE %s :%s", parv[0], parv[1], buf);
return 0;
}