Changeset 18e1f3b for irc_send.c


Ignore:
Timestamp:
2012-05-02T07:58:22Z (12 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
25b80e9c
Parents:
d527913
Message:

Set PACKAGE to BitlBee-LIBPURPLE for the libpurple variant, because in many
ways it's not BitlBee and I'm tired of getting libpurple-related bug reports.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_send.c

    rd527913 r18e1f3b  
    4040void irc_send_login( irc_t *irc )
    4141{
    42         irc_send_num( irc,   1, ":Welcome to the BitlBee gateway, %s", irc->user->nick );
    43         irc_send_num( irc,   2, ":Host %s is running BitlBee " BITLBEE_VERSION " " ARCH "/" CPU ".", irc->root->host );
     42        irc_send_num( irc,   1, ":Welcome to the %s gateway, %s", PACKAGE, irc->user->nick );
     43        irc_send_num( irc,   2, ":Host %s is running %s %s %s/%s.", irc->root->host,
     44                                PACKAGE, BITLBEE_VERSION, ARCH, CPU );
    4445        irc_send_num( irc,   3, ":%s", IRCD_INFO );
    4546        irc_send_num( irc,   4, "%s %s %s %s", irc->root->host, BITLBEE_VERSION, UMODES UMODES_PRIV, CMODES );
Note: See TracChangeset for help on using the changeset viewer.