From: David Kalnischkies Date: Fri, 6 May 2011 09:53:54 +0000 (+0200) Subject: undo the temporary progress reporting disabling which slipped into last commit X-Git-Tag: 0.9.0~91^2~11^2~5 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/3d17b9ffc7c5a417d69916c282f4756cc7e938d2 undo the temporary progress reporting disabling which slipped into last commit --- diff --git a/apt-pkg/edsp.cc b/apt-pkg/edsp.cc index 5b59373bd..d604110ef 100644 --- a/apt-pkg/edsp.cc +++ b/apt-pkg/edsp.cc @@ -450,10 +450,10 @@ bool EDSP::WriteSolution(pkgDepCache &Cache, FILE* output) /*}}}*/ // EDSP::WriteProgess - pulse to the given file descriptor /*{{{*/ bool EDSP::WriteProgress(unsigned short const percent, const char* const message, FILE* output) { -// fprintf(output, "Progress: %s\n", TimeRFC1123(time(NULL)).c_str()); -// fprintf(output, "Percentage: %d\n", percent); -// fprintf(output, "Message: %s\n\n", message); -// fflush(output); + fprintf(output, "Progress: %s\n", TimeRFC1123(time(NULL)).c_str()); + fprintf(output, "Percentage: %d\n", percent); + fprintf(output, "Message: %s\n\n", message); + fflush(output); return true; } /*}}}*/