summary refs log tree commit diff stats
path: root/plugins
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-07-18 11:17:21 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-07-18 11:17:21 +0200
commit8aaff85e7087e4771994c8ea0b5ba69544f9da7d (patch)
tree5ac1325142341d91d0c78b4bbcb48aba05089a2e /plugins
parenta4052aff327e55a3c0282b8c16c4a815f47b69ff (diff)
Prepare FiSHLiM to use the plugin config API
Diffstat (limited to 'plugins')
-rw-r--r--plugins/fishlim/keystore.c4
-rw-r--r--plugins/fishlim/plugin_xchat.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/fishlim/keystore.c b/plugins/fishlim/keystore.c
index e628c289..0e211958 100644
--- a/plugins/fishlim/keystore.c
+++ b/plugins/fishlim/keystore.c
@@ -36,7 +36,7 @@ static char *keystore_password = NULL;
 
 
 /**
- * Opens the key store file: ~/.xchat2/blow.ini
+ * Opens the key store file: ~/.config/hexchat/plugin_fishlim.conf
  */
 static GKeyFile *getConfigFile() {
     gchar *filename = get_config_filename();
@@ -63,7 +63,7 @@ static const char *get_keystore_password() {
 
 
 /**
- * Gets a value for a nick/channel from blow.ini. Unlike
+ * Gets a value for a nick/channel from plugin_fishlim.conf. Unlike
  * g_key_file_get_string, this function is case insensitive.
  */
 static gchar *get_nick_value(GKeyFile *keyfile, const char *nick, const char *item) {
diff --git a/plugins/fishlim/plugin_xchat.c b/plugins/fishlim/plugin_xchat.c
index d1d3f5ca..eb2784d3 100644
--- a/plugins/fishlim/plugin_xchat.c
+++ b/plugins/fishlim/plugin_xchat.c
@@ -52,7 +52,7 @@ static xchat_plugin *ph;
  * Returns the path to the key store file.
  */
 gchar *get_config_filename() {
-    return g_build_filename(xchat_get_info(ph, "xchatdirfs"), "blow.ini", NULL);
+    return g_build_filename(xchat_get_info(ph, "xchatdirfs"), "plugin_fishlim.conf", NULL);
 }
 
 /**