From: Fredrik Tolf Date: Sat, 18 Mar 2017 03:18:55 +0000 (+0100) Subject: Fixed hublist decompression error message bug. X-Git-Url: http://git.dolda2000.com/gitweb/?p=doldaconnect.git;a=commitdiff_plain;h=ef0869333c2908986a501759445136bcdf57ceec Fixed hublist decompression error message bug. --- diff --git a/clients/gtk2/hublist.c b/clients/gtk2/hublist.c index ff94161..2420ff8 100644 --- a/clients/gtk2/hublist.c +++ b/clients/gtk2/hublist.c @@ -148,7 +148,7 @@ static void fdcb(gpointer data, gint source, GdkInputCondition cond) bzs->avail_out = mybufsize - mybufdata; bzret = BZ2_bzDecompress(bzs); if((bzret != BZ_OK) && (bzret != BZ_STREAM_END)) { - msgbox(GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, _("Could not decompress hublist (%i)"), hret); + msgbox(GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, _("Could not decompress hublist (%i)"), bzret); aborthublist(); return; }