From 7b69a9c00a4263d3a3118a8f620a38227d79999d Mon Sep 17 00:00:00 2001 From: "berkeviktor@aol.com" Date: Wed, 12 Jan 2011 07:11:31 +0100 Subject: even more minor plugin fixes --- plugins/checksum/checksum.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'plugins') 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"); } } -- cgit 1.4.1