Changeset ea85a0b


Ignore:
Timestamp:
2005-11-16T14:22:22Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
685c4ef
Parents:
bb556db
Message:

Some more formatting changes in the auth. request messages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • query.c

    rbb556db rea85a0b  
    131131        {
    132132                q->yes( NULL, q->data );
    133                 serv_got_crap( q->gc, "\2Accepted\2: %s", q->question );
     133                serv_got_crap( q->gc, "Accepted: %s", q->question );
    134134        }
    135135        else
    136136        {
    137137                q->no( NULL, q->data );
    138                 serv_got_crap( q->gc, "\2Rejected\2: %s", q->question );
     138                serv_got_crap( q->gc, "Rejected: %s", q->question );
    139139        }
    140140        q->data = NULL;
     
    150150        if( q->gc )
    151151        {
    152                 serv_got_crap( q->gc, "New request:" );
    153                 serv_got_crap( q->gc, "%s\nYou can use the yes/no commands to accept/reject this request.", q->question );
     152                serv_got_crap( q->gc, "New request: %s\nYou can use the \2yes\2/\2no\2 commands to accept/reject this request.", q->question );
    154153        }
    155154        else
    156155        {
    157                 irc_usermsg( irc, "New request:" );
    158                 irc_usermsg( irc, "%s\nYou can use the yes/no commands to accept/reject this request.", q->question );
     156                irc_usermsg( irc, "New request: %s\nYou can use the \2yes\2/\2no\2 commands to accept/reject this request.", q->question );
    159157        }
    160158}
Note: See TracChangeset for help on using the changeset viewer.