From c8719390d138bbb23f04fa263465ff56e05e4df7 Mon Sep 17 00:00:00 2001 From: Laurent Clouet Date: Fri, 29 Jul 2016 23:25:05 +0200 Subject: [PATCH] Bugfix: Typo in log --- src/com/sheepit/client/Client.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/sheepit/client/Client.java b/src/com/sheepit/client/Client.java index 2f4535d..21c2c96 100644 --- a/src/com/sheepit/client/Client.java +++ b/src/com/sheepit/client/Client.java @@ -603,8 +603,8 @@ public class Client { while ((ret != 0 || md5_check == false) && attempts < this.maxDownloadFileAttempts) { if (ret != 0) { - this.gui.error("Client::downloadFile problem with Utils.HTTPGetFile returned " + ret); - this.log.debug("Client::downloadFile problem with Utils.HTTPGetFile (return: " + ret + ") removing local file (path: " + local_path + ")"); + this.gui.error("Client::downloadFile problem with Server.HTTPGetFile returned " + ret); + this.log.debug("Client::downloadFile problem with Server.HTTPGetFile (return: " + ret + ") removing local file (path: " + local_path + ")"); } else if (md5_check == false) { this.gui.error("Client::downloadFile problem with Client::checkFile mismatch on md5");