From 32eac07424db6e794cc4bc0350545a1f72237efd Mon Sep 17 00:00:00 2001 From: TingPing Date: Sat, 22 Dec 2012 23:42:49 -0500 Subject: [PATCH] fix updchk again --- plugins/upd/upd.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/plugins/upd/upd.c b/plugins/upd/upd.c index ed1ad854..2b28e74d 100644 --- a/plugins/upd/upd.c +++ b/plugins/upd/upd.c @@ -69,7 +69,10 @@ check_version () InternetCloseHandle (hFile); InternetCloseHandle (hINet); - return buffer; + if (strlen (buffer) == 5) + return buffer; + else + return "Unknown"; } 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); } - 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); }