diff options
author | TingPing <tngpng@gmail.com> | 2013-07-16 12:48:34 -0400 |
---|---|---|
committer | TingPing <tngpng@gmail.com> | 2013-07-16 12:48:34 -0400 |
commit | 2e2f4662f3bc3d97d7103cc0f4e2bd1dbe2278f0 (patch) | |
tree | 4f0c37c275ec1f1a59c2ff5367a71e76b173eeff /plugins/upd | |
parent | 6c8d9c2194d220ba26b8be09e8a6bffa4cf99b7f (diff) |
Updater: fix download links
Diffstat (limited to 'plugins/upd')
-rw-r--r-- | plugins/upd/upd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/upd/upd.c b/plugins/upd/upd.c index 3ab8edd5..5d61b4cb 100644 --- a/plugins/upd/upd.c +++ b/plugins/upd/upd.c @@ -233,9 +233,9 @@ print_version (char *word[], char *word_eol[], void *userdata) else { #ifdef _WIN64 /* use this approach, the wProcessorArchitecture method always returns 0 (=x86) for some reason */ - hexchat_printf (ph, "%s\tA HexChat update is available! You can download it from here:\nhttp://dl.hexchat.org/hexchat/HexChat%%20%s%%20x64.exe\n", name, version); + hexchat_printf (ph, "%s\tA HexChat update is available! You can download it from here:\nhttp://dl.hexchat.net/hexchat/HexChat%%20%s%%20x64.exe\n", name, version); #else - hexchat_printf (ph, "%s\tA HexChat update is available! You can download it from here:\nhttp://dl.hexchat.org/hexchat/HexChat%%20%s%%20x86.exe\n", name, version); + hexchat_printf (ph, "%s\tA HexChat update is available! You can download it from here:\nhttp://dl.hexchat.net/hexchat/HexChat%%20%s%%20x86.exe\n", name, version); #endif } return HEXCHAT_EAT_HEXCHAT; |