svsmodes were not being sent correctly to the rest of the network (wrong prefix)
This commit is contained in:
parent
29cb18547a
commit
8d29d63230
2 changed files with 3 additions and 2 deletions
|
@ -11,6 +11,7 @@ Symbols are:
|
|||
(F) - Fixed message about +r when u change a usermode
|
||||
(F) - Really allow services to send through +g this time
|
||||
(F) - /aliases can not send to Nick@host/server...
|
||||
(F) - SVSMODES were not being propogated through the network. Fixed
|
||||
|
||||
* NeoIRCd Version 0.9.3 - 19th Sept, 2002 - Fish
|
||||
(HP) - Merged in Hybrid rc4 Patches (including Rc3 and Rc3 fixes)
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||||
* USA
|
||||
*
|
||||
* $Id: s_user.c,v 1.21 2002/09/24 13:25:29 fishwaldo Exp $
|
||||
* $Id: s_user.c,v 1.22 2002/09/24 13:49:45 fishwaldo Exp $
|
||||
*/
|
||||
|
||||
#include "stdinc.h"
|
||||
|
@ -1212,7 +1212,7 @@ send_umode_out(struct Client *client_p,
|
|||
|| (target_p->localClient->serverMask &
|
||||
source_p->lazyLinkClientExists))
|
||||
sendto_one(target_p, ":%s MODE %s :%s",
|
||||
source_p->name, source_p->name, buf);
|
||||
client_p->name, source_p->name, buf);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue