--- a/wget-1.12/src/progress.c 2009-09-22 05:49:32.000000000 +0300 +++ b/wget-1.12/src/progress.c 2010-03-21 22:05:45.000000000 +0200 @@ -924,15 +924,18 @@ begin = p; /* Print the initial portion of the download with '+' chars, the - rest with '=' and one '>'. */ + rest with '=' and one 'B'. */ for (i = 0; i < insz; i++) *p++ = '+'; dlsz -= insz; if (dlsz > 0) { for (i = 0; i < dlsz - 1; i++) - *p++ = '='; - *p++ = '>'; + if (i == 0) + *p++ = '8'; + else + *p++ = '='; + *p++ = 'B'; } while (p - begin < progress_size) @@ -957,7 +960,7 @@ { if (i == pos - 1) *p++ = '<'; else if (i == pos ) *p++ = '='; - else if (i == pos + 1) *p++ = '>'; + else if (i == pos + 1) *p++ = 'B'; else *p++ = ' '; }