Changeset 17f057d for irc_commands.c


Ignore:
Timestamp:
2011-12-13T00:34:07Z (12 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
4efa5ce, 6e9ae72, a0a3de6
Parents:
b926d88
Message:

As I intended for a while already, use account tags everywhere instead of
"protocol(handle)". It's guaranteed to be unique and also shorter.

It may suck for people who have multiple accounts and didn't change their
tags, but that'll hopefully remind them to change them.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_commands.c

    rb926d88 r17f057d  
    434434                                set_setstr( &a->set, "password", password );
    435435                                irc_rootmsg( irc, "Password added to IM account "
    436                                              "%s(%s)", a->prpl->name, a->user );
     436                                             "%s", a->tag );
    437437                                /* The IRC client may expect this. 491 suggests the OPER
    438438                                   password was wrong, so the client won't expect a +o.
    439439                                   It may however repeat the password prompt. We'll see. */
    440440                                irc_send_num( irc, 491, ":Password added to IM account "
    441                                               "%s(%s)", a->prpl->name, a->user );
     441                                              "%s", a->tag );
    442442                        }
    443443        }
Note: See TracChangeset for help on using the changeset viewer.