From af7e6d3e2021715c8d7fc42479ad8ee9f0314cdf Mon Sep 17 00:00:00 2001 From: TingPing Date: Mon, 2 Jun 2014 18:28:35 -0400 Subject: [PATCH] fishlim: Fix filename in error messages --- plugins/fishlim/plugin_hexchat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/fishlim/plugin_hexchat.c b/plugins/fishlim/plugin_hexchat.c index 72517ca9..c7b06036 100644 --- a/plugins/fishlim/plugin_hexchat.c +++ b/plugins/fishlim/plugin_hexchat.c @@ -221,7 +221,7 @@ static int handle_setkey(char *word[], char *word_eol[], void *userdata) { if (keystore_store_key(nick, key)) { hexchat_printf(ph, "Stored key for %s\n", nick); } else { - hexchat_printf(ph, "\00305Failed to store key in blow.ini\n", nick, key); + hexchat_printf(ph, "\00305Failed to store key in addon_fishlim.conf\n", nick, key); } return HEXCHAT_EAT_HEXCHAT; @@ -245,7 +245,7 @@ static int handle_delkey(char *word[], char *word_eol[], void *userdata) { if (keystore_delete_nick(nick)) { hexchat_printf(ph, "Deleted key for %s\n", nick); } else { - hexchat_printf(ph, "\00305Failed to delete key in blow.ini!\n", nick); + hexchat_printf(ph, "\00305Failed to delete key in addon_fishlim.conf!\n", nick); } return HEXCHAT_EAT_HEXCHAT;