summary refs log tree commit diff stats
path: root/plugins/fishlim/plugin_hexchat.c
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-10-30 10:42:37 +0100
committerBerke Viktor <bviktor@hexchat.org>2012-10-30 10:42:37 +0100
commit82936df2af3993c2e234042c450e0e9630b045d4 (patch)
tree415376331719c2502016c1db33b0f8bdf0363866 /plugins/fishlim/plugin_hexchat.c
parent012d78b2f642b91099b581937a15b6afab0049d0 (diff)
Some final rebranding
Diffstat (limited to 'plugins/fishlim/plugin_hexchat.c')
-rw-r--r--plugins/fishlim/plugin_hexchat.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/fishlim/plugin_hexchat.c b/plugins/fishlim/plugin_hexchat.c
index 6ddb5d64..0f635cd9 100644
--- a/plugins/fishlim/plugin_hexchat.c
+++ b/plugins/fishlim/plugin_hexchat.c
@@ -100,7 +100,7 @@ static int handle_outgoing(char *word[], char *word_eol[], void *userdata) {
     hexchat_commandf(ph, "PRIVMSG %s :+OK %s", channel, encrypted);
     
     free(encrypted);
-    return HEXCHAT_EAT_XCHAT;
+    return HEXCHAT_EAT_HEXCHAT;
 }
 
 /**
@@ -178,7 +178,7 @@ static int handle_incoming(char *word[], char *word_eol[], void *userdata) {
     
     free(message);
     free(sender_nick);
-    return HEXCHAT_EAT_XCHAT;
+    return HEXCHAT_EAT_HEXCHAT;
   
   decrypt_error:
     free(decrypted);
@@ -196,7 +196,7 @@ static int handle_setkey(char *word[], char *word_eol[], void *userdata) {
     // Check syntax
     if (*word[2] == '\0') {
         hexchat_printf(ph, "%s\n", usage_setkey);
-        return HEXCHAT_EAT_XCHAT;
+        return HEXCHAT_EAT_HEXCHAT;
     }
     
     if (*word[3] == '\0') {
@@ -216,7 +216,7 @@ static int handle_setkey(char *word[], char *word_eol[], void *userdata) {
         hexchat_printf(ph, "\00305Failed to store key in blow.ini\n", nick, key);
     }
     
-    return HEXCHAT_EAT_XCHAT;
+    return HEXCHAT_EAT_HEXCHAT;
 }
 
 /**
@@ -228,7 +228,7 @@ static int handle_delkey(char *word[], char *word_eol[], void *userdata) {
     // Check syntax
     if (*word[2] == '\0' || *word[3] != '\0') {
         hexchat_printf(ph, "%s\n", usage_delkey);
-        return HEXCHAT_EAT_XCHAT;
+        return HEXCHAT_EAT_HEXCHAT;
     }
     
     nick = word_eol[2];
@@ -240,7 +240,7 @@ static int handle_delkey(char *word[], char *word_eol[], void *userdata) {
         hexchat_printf(ph, "\00305Failed to delete key in blow.ini!\n", nick);
     }
     
-    return HEXCHAT_EAT_XCHAT;
+    return HEXCHAT_EAT_HEXCHAT;
 }
 
 /**