summary refs log tree commit diff stats
path: root/plugins/checksum
diff options
context:
space:
mode:
authorberkeviktor@aol.com <berkeviktor@aol.com>2010-10-20 22:49:55 +0200
committerberkeviktor@aol.com <berkeviktor@aol.com>2010-10-20 22:49:55 +0200
commita4c0e7f3fed1eadcbe0efa3393a91cc4293cf549 (patch)
tree45bf18f9d51fa6437397bca25af12de3535f91dd /plugins/checksum
parentcd49a8325cf146bc95551141a6950e0c3d2108dd (diff)
some formatting
Diffstat (limited to 'plugins/checksum')
-rw-r--r--plugins/checksum/checksum.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/checksum/checksum.c b/plugins/checksum/checksum.c
index dd57f621..b48d7d34 100644
--- a/plugins/checksum/checksum.c
+++ b/plugins/checksum/checksum.c
@@ -107,8 +107,8 @@ dccrecv_cb(char *word[], void *userdata)
 {
 	unsigned char sum[65];
 	sha256_file (word[2], sum);
-	xchat_printf (ph, "DCC RECV %s from %s complete [%s cps]", word[1], word[3], word[4]);
-	xchat_printf (ph, "SHA256 checksum for %s:\n%s", word[1], sum);
+	xchat_printf (ph, "DCC RECV %s from %s complete [%s cps]\n", word[1], word[3], word[4]);
+	xchat_printf (ph, "SHA256 checksum for %s:\n%s\n", word[1], sum);
 	return XCHAT_EAT_XCHAT;
 }
 
@@ -117,8 +117,8 @@ dccoffer_cb(char *word[], void *userdata)
 {
 	unsigned char sum[65];
 	sha256_file (word[3], sum);
-	xchat_printf (ph, "Offering %s to %s", word[1], word[2]);
-	xchat_printf (ph, "SHA256 checksum for %s:\n%s", word[1], sum);
+	xchat_printf (ph, "Offering %s to %s\n", word[1], word[2]);
+	xchat_printf (ph, "SHA256 checksum for %s:\n%s\n", word[1], sum);
 	return XCHAT_EAT_XCHAT;
 }