mirror of
https://github.com/moparisthebest/hexchat
synced 2025-02-16 15:20:11 -05:00
minor plugin fixes
This commit is contained in:
parent
522c6c9f16
commit
f6fd353f76
@ -161,7 +161,7 @@ get_max_hash_size ()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static void
|
||||||
print_size ()
|
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", get_max_hash_size ());
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
|
|
||||||
static xchat_plugin *ph; /* plugin handle */
|
static xchat_plugin *ph; /* plugin handle */
|
||||||
|
|
||||||
char*
|
static char*
|
||||||
check_version ()
|
check_version ()
|
||||||
{
|
{
|
||||||
HINTERNET hINet, hFile;
|
HINTERNET hINet, hFile;
|
||||||
@ -57,15 +57,17 @@ check_version ()
|
|||||||
buffer[dwRead] = 0;
|
buffer[dwRead] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
InternetCloseHandle (hFile);
|
|
||||||
return buffer;
|
return buffer;
|
||||||
|
|
||||||
|
InternetCloseHandle (hFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
InternetCloseHandle (hINet);
|
InternetCloseHandle (hINet);
|
||||||
|
|
||||||
return "Unknown";
|
return "Unknown";
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static void
|
||||||
print_version ()
|
print_version ()
|
||||||
{
|
{
|
||||||
char *version = check_version ();
|
char *version = check_version ();
|
||||||
|
Loading…
Reference in New Issue
Block a user