core: remove unneeded warning when read of sec.conf fails (another warning is already displayed)

This commit is contained in:
Sebastien Helleu 2013-11-09 10:13:09 +01:00
parent 46c26922aa
commit 1417b7a823

View File

@ -1100,13 +1100,6 @@ secure_read ()
rc = config_file_read (secure_config_file); rc = config_file_read (secure_config_file);
if (rc != WEECHAT_CONFIG_READ_OK)
{
gui_chat_printf (NULL,
_("%sError reading configuration"),
gui_chat_prefix[GUI_CHAT_PREFIX_ERROR]);
}
return rc; return rc;
} }