mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-25 18:52:22 -05:00
fix updchk again
This commit is contained in:
parent
fa0705f059
commit
32eac07424
@ -69,7 +69,10 @@ check_version ()
|
|||||||
|
|
||||||
InternetCloseHandle (hFile);
|
InternetCloseHandle (hFile);
|
||||||
InternetCloseHandle (hINet);
|
InternetCloseHandle (hINet);
|
||||||
return buffer;
|
if (strlen (buffer) == 5)
|
||||||
|
return buffer;
|
||||||
|
else
|
||||||
|
return "Unknown";
|
||||||
}
|
}
|
||||||
|
|
||||||
InternetCloseHandle (hINet);
|
InternetCloseHandle (hINet);
|
||||||
@ -220,7 +223,7 @@ print_version (char *word[], char *word_eol[], void *userdata)
|
|||||||
{
|
{
|
||||||
hexchat_printf (ph, "%s\tYou have the latest version of HexChat installed!\n", name);
|
hexchat_printf (ph, "%s\tYou have the latest version of HexChat installed!\n", name);
|
||||||
}
|
}
|
||||||
else if (strcmp (version, "Unknown") == 0 || strlen (version) != 5)
|
else if (strcmp (version, "Unknown") == 0)
|
||||||
{
|
{
|
||||||
hexchat_printf (ph, "%s\tUnable to check for HexChat updates!\n", name);
|
hexchat_printf (ph, "%s\tUnable to check for HexChat updates!\n", name);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user