aboutsummaryrefslogtreecommitdiffstats
path: root/unix.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2012-05-02 08:58:22 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2012-05-02 08:58:22 +0100
commit18e1f3b157062e2daec877157e4868593e984656 (patch)
treed5d564cc51df1de09a2957b7564aca94c61725b3 /unix.c
parentd527913c458a5e4713af18e019ba356dd369cbcc (diff)
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.
Diffstat (limited to 'unix.c')
-rw-r--r--unix.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix.c b/unix.c
index 2ad2edfc..b2b235ed 100644
--- a/unix.c
+++ b/unix.c
@@ -112,7 +112,7 @@ int main( int argc, char *argv[] )
log_link( LOGLVL_WARNING, LOGOUTPUT_IRC );
i = bitlbee_inetd_init();
- log_message( LOGLVL_INFO, "BitlBee %s starting in inetd mode.", BITLBEE_VERSION );
+ log_message( LOGLVL_INFO, "%s %s starting in inetd mode.", PACKAGE, BITLBEE_VERSION );
}
else if( global.conf->runmode == RUNMODE_DAEMON )
@@ -121,7 +121,7 @@ int main( int argc, char *argv[] )
log_link( LOGLVL_WARNING, LOGOUTPUT_CONSOLE );
i = bitlbee_daemon_init();
- log_message( LOGLVL_INFO, "BitlBee %s starting in daemon mode.", BITLBEE_VERSION );
+ log_message( LOGLVL_INFO, "%s %s starting in daemon mode.", PACKAGE, BITLBEE_VERSION );
}
else if( global.conf->runmode == RUNMODE_FORKDAEMON )
{
@@ -138,7 +138,7 @@ int main( int argc, char *argv[] )
}
i = bitlbee_daemon_init();
- log_message( LOGLVL_INFO, "BitlBee %s starting in forking daemon mode.", BITLBEE_VERSION );
+ log_message( LOGLVL_INFO, "%s %s starting in forking daemon mode.", PACKAGE, BITLBEE_VERSION );
}
if( i != 0 )
return( i );