diff libpurple/protocols/gg/lib/sha1.c @ 31086:a8cc50c2279f

Remove trailing whitespace
author Richard Laager <rlaager@wiktel.com>
date Tue, 04 Jan 2011 06:55:30 +0000
parents 6359fde67f4c
children 3a90a59ddea2
line wrap: on
line diff
--- a/libpurple/protocols/gg/lib/sha1.c	Tue Jan 04 06:42:45 2011 +0000
+++ b/libpurple/protocols/gg/lib/sha1.c	Tue Jan 04 06:55:30 2011 +0000
@@ -228,12 +228,12 @@
 void gg_login_hash_sha1(const char *password, uint32_t seed, uint8_t *result)
 {
 	SHA_CTX ctx;
-	
+
 	SHA1_Init(&ctx);
 	SHA1_Update(&ctx, (const unsigned char*) password, strlen(password));
 	seed = gg_fix32(seed);
 	SHA1_Update(&ctx, (uint8_t*) &seed, 4);
-	
+
 	SHA1_Final(result, &ctx);
 }