diff options
author | TingPing <tingping@tingping.se> | 2014-06-02 18:28:35 -0400 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2014-06-02 18:28:35 -0400 |
commit | af7e6d3e2021715c8d7fc42479ad8ee9f0314cdf (patch) | |
tree | eac20cfa628b9cb65e3d124b2013ff4c42c7746b /plugins/fishlim/plugin_hexchat.c | |
parent | 7c52e29e6e53d48be1c38596f7489da3b041c180 (diff) |
fishlim: Fix filename in error messages
Diffstat (limited to 'plugins/fishlim/plugin_hexchat.c')
-rw-r--r-- | plugins/fishlim/plugin_hexchat.c | 4 |
1 files 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; |