1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-08-13 16:53:48 -04:00

cosmetics

This commit is contained in:
berkeviktor@aol.com 2011-01-12 08:45:35 +01:00
parent e3d44f8829
commit c89c81f60f

View File

@ -68,7 +68,7 @@ sha256 (char *string, char outputBuffer[65])
SHA256_CTX sha256;
SHA256_Init (&sha256);
SHA256_Update (&sha256, string, strlen(string));
SHA256_Update (&sha256, string, strlen (string));
SHA256_Final (hash, &sha256);
for (i = 0; i < SHA256_DIGEST_LENGTH; i++)
@ -301,13 +301,13 @@ dccoffer_cb (char *word[], void *userdata)
static void
checksum (char *userdata[])
{
if (!stricmp("GET", userdata[2]))
if (!stricmp ("GET", userdata[2]))
{
print_size ();
} else if (!stricmp("INC", userdata[2]))
} else if (!stricmp ("INC", userdata[2]))
{
increase_max_hash_size ();
} else if (!stricmp("DEC", userdata[2]))
} else if (!stricmp ("DEC", userdata[2]))
{
decrease_max_hash_size ();
} else