Changeset e8a6211 for protocols/nogaim.c


Ignore:
Timestamp:
2006-10-22T17:00:15Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
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.
Message:

Merge from main tree.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    r66f783f re8a6211  
    578578              ( ( u->online == oo ) && ( oa == !u->away ) ) ) )         /* (De)voice people changing state */
    579579        {
    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,
    581581                                                                gc->irc->channel, u->away?'-':'+', u->nick );
    582582        }
     
    912912                                {
    913913                                        for( i = 0; i < count; v[i++] = 'v' ); v[i] = 0;
    914                                         irc_write( irc, ":%s!%s@%s MODE %s %c%s%s",
    915                                                    irc->mynick, irc->mynick, irc->myhost,
     914                                        irc_write( irc, ":%s MODE %s %c%s%s",
     915                                                   irc->myhost,
    916916                                                   irc->channel, pm, v, list );
    917917                                       
     
    928928                /* $v = 'v' x $i */
    929929                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,
    931931                                                            irc->channel, pm, v, list );
    932932        }
Note: See TracChangeset for help on using the changeset viewer.