1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

Print the log's expanded file name when complaining about not being able to

create log file.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1798 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-09-17 13:04:23 +00:00 committed by cras
parent 2655c1ffe0
commit 56b7f5ecbf

View File

@ -601,7 +601,8 @@ static void sig_log_locked(LOG_REC *log)
static void sig_log_create_failed(LOG_REC *log) static void sig_log_create_failed(LOG_REC *log)
{ {
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
TXT_LOG_CREATE_FAILED, log->fname, g_strerror(errno)); TXT_LOG_CREATE_FAILED,
log->real_fname, g_strerror(errno));
} }
static void sig_log_new(LOG_REC *log) static void sig_log_new(LOG_REC *log)