summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--plugins/fishlim/plugin_hexchat.c6
-rw-r--r--src/common/plugin-identd.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/fishlim/plugin_hexchat.c b/plugins/fishlim/plugin_hexchat.c
index 89770e3f..3eaad986 100644
--- a/plugins/fishlim/plugin_hexchat.c
+++ b/plugins/fishlim/plugin_hexchat.c
@@ -260,7 +260,7 @@ static int handle_keyx_notice(char *word[], char *word_eol[], void *userdata) {
         char *pub_key;
 
         if (cbc) {
-            hexchat_print(ph, "Recieved key exchange for CBC mode which is not supported.");
+            hexchat_print(ph, "Received key exchange for CBC mode which is not supported.");
             goto cleanup;
         }
 
@@ -280,12 +280,12 @@ static int handle_keyx_notice(char *word[], char *word_eol[], void *userdata) {
         g_free(sender_lower);
 
         if (cbc) {
-            hexchat_print(ph, "Recieved key exchange for CBC mode which is not supported.");
+            hexchat_print(ph, "Received key exchange for CBC mode which is not supported.");
             goto cleanup;
         }
 
         if (!priv_key) {
-            hexchat_printf(ph, "Recieved a key exchange response for unknown user: %s", sender);
+            hexchat_printf(ph, "Received a key exchange response for unknown user: %s", sender);
             goto cleanup;
         }
     } else {
diff --git a/src/common/plugin-identd.c b/src/common/plugin-identd.c
index 2eb852e0..a8086d6d 100644
--- a/src/common/plugin-identd.c
+++ b/src/common/plugin-identd.c
@@ -146,7 +146,7 @@ identd_read_ready (GDataInputStream *in_stream, GAsyncResult *res, ident_info *i
 		if (!local || !remote || local > G_MAXUINT16 || remote > G_MAXUINT16)
 		{
 			g_strlcat (buf, "ERROR : INVALID-PORT\r\n", sizeof (buf));
-			g_debug ("Identd: Recieved invalid port");
+			g_debug ("Identd: Received invalid port");
 		}
 		else
 		{
@@ -154,7 +154,7 @@ identd_read_ready (GDataInputStream *in_stream, GAsyncResult *res, ident_info *i
 			if (!info->username)
 			{
 				g_strlcat (buf, "ERROR : NO-USER\r\n", sizeof (buf));
-				g_debug ("Identd: Recieved invalid local port");
+				g_debug ("Identd: Received invalid local port");
 			}
 			else
 			{