diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2008-02-11 12:35:01 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2008-02-11 12:35:01 +0000 |
commit | eeb85a8a880fefe655eb31b6322136b61ee969e2 (patch) | |
tree | bab4cd9e7702b50d9355d50f4f90489007925876 /irc_commands.c | |
parent | 3038e476a93b2be057581b831749eac931a06559 (diff) |
Got rid of some noise at startup: complaining when the default configuration
file couldn't be found while the user specified an alternative location with
the -c option, and double complaints about /var/lib/bitlbee/ permissions.
Diffstat (limited to 'irc_commands.c')
-rw-r--r-- | irc_commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/irc_commands.c b/irc_commands.c index 4b431027..68db4617 100644 --- a/irc_commands.c +++ b/irc_commands.c @@ -570,7 +570,7 @@ static void irc_cmd_rehash( irc_t *irc, char **cmd ) else ipc_to_master( cmd ); - irc_reply( irc, 382, "%s :Rehashing", CONF_FILE ); + irc_reply( irc, 382, "%s :Rehashing", global.conf_file ); } static const command_t irc_commands[] = { |