Changeset e8a6211 for protocols/nogaim.c
- Timestamp:
- 2006-10-22T17:00:15Z (18 years ago)
- Branches:
- master
- Children:
- f0071b7
- Parents:
- 66f783f (diff), 6237ded (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/nogaim.c
r66f783f re8a6211 578 578 ( ( u->online == oo ) && ( oa == !u->away ) ) ) ) /* (De)voice people changing state */ 579 579 { 580 irc_write( gc->irc, ":%s !%s@%s MODE %s %cv %s", gc->irc->mynick, gc->irc->mynick, gc->irc->myhost,580 irc_write( gc->irc, ":%s MODE %s %cv %s", gc->irc->myhost, 581 581 gc->irc->channel, u->away?'-':'+', u->nick ); 582 582 } … … 912 912 { 913 913 for( i = 0; i < count; v[i++] = 'v' ); v[i] = 0; 914 irc_write( irc, ":%s !%s@%sMODE %s %c%s%s",915 irc->my nick, irc->mynick, irc->myhost,914 irc_write( irc, ":%s MODE %s %c%s%s", 915 irc->myhost, 916 916 irc->channel, pm, v, list ); 917 917 … … 928 928 /* $v = 'v' x $i */ 929 929 for( i = 0; i < count; v[i++] = 'v' ); v[i] = 0; 930 irc_write( irc, ":%s !%s@%s MODE %s %c%s%s", irc->mynick, irc->mynick, irc->myhost,930 irc_write( irc, ":%s MODE %s %c%s%s", irc->myhost, 931 931 irc->channel, pm, v, list ); 932 932 }
Note: See TracChangeset
for help on using the changeset viewer.