summary refs log tree commit diff stats
path: root/plugins
diff options
context:
space:
mode:
authorberkeviktor@aol.com <berkeviktor@aol.com>2011-01-12 07:11:31 +0100
committerberkeviktor@aol.com <berkeviktor@aol.com>2011-01-12 07:11:31 +0100
commit7b69a9c00a4263d3a3118a8f620a38227d79999d (patch)
treec8f1df9190c48ede32c621570f88d8425d0c9d60 /plugins
parentf6fd353f767b9c6d74fc10dbf7f2e675f36e57d4 (diff)
even more minor plugin fixes
Diffstat (limited to 'plugins')
-rw-r--r--plugins/checksum/checksum.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/plugins/checksum/checksum.c b/plugins/checksum/checksum.c
index b5bf1bc5..4ac26225 100644
--- a/plugins/checksum/checksum.c
+++ b/plugins/checksum/checksum.c
@@ -164,7 +164,7 @@ get_max_hash_size ()
 static void
 print_size ()
 {
-	xchat_printf (ph, "File size limit for checksums (in bytes): %llu", get_max_hash_size ());
+	xchat_printf (ph, "File size limit for checksums (in bytes): %llu\n", get_max_hash_size ());
 }
 
 static void
@@ -176,7 +176,7 @@ increase_max_hash_size ()
 
 	if (config_fail)
 	{
-		xchat_printf (ph, "Config file is unavailable, defaulting to 4 GB");
+		xchat_printf (ph, "Config file is unavailable, defaulting to 4 GB\n");
 	} else
 	{
 		size = get_max_hash_size ();
@@ -189,7 +189,7 @@ increase_max_hash_size ()
 		file_out = fopen (buffer, "w");
 		fprintf (file_out, "%llu\n", size);
 		fclose (file_out);
-		xchat_printf (ph, "New file size limit for checksums (in bytes): %llu", size);
+		xchat_printf (ph, "New file size limit for checksums (in bytes): %llu\n", size);
 	}
 }
 
@@ -202,7 +202,7 @@ decrease_max_hash_size ()
 
 	if (config_fail)
 	{
-		xchat_printf (ph, "Config file is unavailable, defaulting to 4 GB");
+		xchat_printf (ph, "Config file is unavailable, defaulting to 4 GB\n");
 	} else
 	{
 		size = get_max_hash_size ();
@@ -215,7 +215,7 @@ decrease_max_hash_size ()
 		file_out = fopen (buffer, "w");
 		fprintf (file_out, "%llu\n", size);
 		fclose (file_out);
-		xchat_printf (ph, "New file size limit for checksums (in bytes): %llu", size);
+		xchat_printf (ph, "New file size limit for checksums (in bytes): %llu\n", size);
 	}
 }
 
@@ -238,11 +238,11 @@ dccrecv_cb (char *word[], void *userdata)
 		} else
 		{
 			xchat_set_context (ph, xchat_find_context (ph, NULL, word[3]));
-			xchat_printf (ph, "SHA-256 checksum for %s (local):  (size limit reached, no checksum calculated, you can increase it with /CHECKSUM_INC)\n", word[1]);
+			xchat_printf (ph, "SHA-256 checksum for %s (local):  (size limit reached, no checksum calculated, you can increase it with /CHECKSUM INC)\n", word[1]);
 		}
 	} else
 	{
-		xchat_printf (ph, "File access error");
+		xchat_printf (ph, "File access error\n");
 	}
 
 	return XCHAT_EAT_NONE;
@@ -265,11 +265,11 @@ dccoffer_cb (char *word[], void *userdata)
 		} else
 		{
 			xchat_set_context (ph, xchat_find_context (ph, NULL, word[3]));
-			xchat_printf (ph, "SHA-256 checksum for %s (local):  (size limit reached, no checksum calculated, you can increase it with /CHECKSUM_INC)\n", word[1]);
+			xchat_printf (ph, "SHA-256 checksum for %s (local):  (size limit reached, no checksum calculated, you can increase it with /CHECKSUM INC)\n", word[1]);
 		}
 	} else
 	{
-		xchat_printf (ph, "File access error");
+		xchat_printf (ph, "File access error\n");
 	}
 
 	return XCHAT_EAT_NONE;
@@ -289,7 +289,7 @@ checksum (char *userdata[])
 		decrease_max_hash_size ();
 	} else
 	{
-		xchat_printf (ph, "Usage: /CHECKSUM GET|INC|DEC");
+		xchat_printf (ph, "Usage: /CHECKSUM GET|INC|DEC\n");
 	}
 }