summary refs log tree commit diff stats
path: root/plugins/checksum/checksum.c
diff options
context:
space:
mode:
authorberkeviktor@aol.com <berkeviktor@aol.com>2010-10-20 22:28:34 +0200
committerberkeviktor@aol.com <berkeviktor@aol.com>2010-10-20 22:28:34 +0200
commitcd49a8325cf146bc95551141a6950e0c3d2108dd (patch)
tree43c745a0dba37a91ea0a8707ad2b3403524028d2 /plugins/checksum/checksum.c
parent93f6d7a7f14c893d64c1fbbcb6e018c1f27d954c (diff)
some cosmetics
Diffstat (limited to 'plugins/checksum/checksum.c')
-rw-r--r--plugins/checksum/checksum.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/checksum/checksum.c b/plugins/checksum/checksum.c
index 0293a874..dd57f621 100644
--- a/plugins/checksum/checksum.c
+++ b/plugins/checksum/checksum.c
@@ -108,7 +108,7 @@ 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: %s\n", word[1], sum);
+	xchat_printf (ph, "SHA256 checksum for %s:\n%s", word[1], sum);
 	return XCHAT_EAT_XCHAT;
 }
 
@@ -118,7 +118,7 @@ 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: %s\n", word[1], sum);
+	xchat_printf (ph, "SHA256 checksum for %s:\n%s", word[1], sum);
 	return XCHAT_EAT_XCHAT;
 }