diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-11-09 10:13:09 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-11-09 10:13:09 +0100 |
commit | 1417b7a823dce326dc4842d06c55cc1a61cc8f01 (patch) | |
tree | ad11477ebdcfc22a48020612def9cc78dba5f77f /src/core/wee-secure.c | |
parent | 46c26922aae6689db9e89f5d748cefa6135999d2 (diff) | |
download | weechat-1417b7a823dce326dc4842d06c55cc1a61cc8f01.zip |
core: remove unneeded warning when read of sec.conf fails (another warning is already displayed)
Diffstat (limited to 'src/core/wee-secure.c')
-rw-r--r-- | src/core/wee-secure.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/wee-secure.c b/src/core/wee-secure.c index bcd21c7cd..d3c972827 100644 --- a/src/core/wee-secure.c +++ b/src/core/wee-secure.c @@ -1100,13 +1100,6 @@ secure_read () 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; } |