Changeset 5283:1770ab532bfd for imap
Legend:
- Unmodified
- Added
- Removed
-
imap/imap.c
r5240 r5283 231 231 232 232 if (pbar && !(pos % 1024)) 233 mutt_progress_update (pbar, pos );233 mutt_progress_update (pbar, pos, -1); 234 234 #ifdef DEBUG 235 235 if (debuglevel >= IMAP_LOG_LTRL) -
imap/message.c
r5128 r5283 146 146 for (msgno = msgbegin; msgno <= msgend ; msgno++) 147 147 { 148 mutt_progress_update (&progress, msgno + 1 );148 mutt_progress_update (&progress, msgno + 1, -1); 149 149 150 150 memset (&h, 0, sizeof (h)); … … 224 224 for (msgno = msgbegin; msgno <= msgend ; msgno++) 225 225 { 226 mutt_progress_update (&progress, msgno + 1 );226 mutt_progress_update (&progress, msgno + 1, -1); 227 227 228 228 /* we may get notification of new mail while fetching headers */ … … 642 642 sent += len; 643 643 flush_buffer(buf, &len, idata->conn); 644 mutt_progress_update (&progressbar, sent );644 mutt_progress_update (&progressbar, sent, -1); 645 645 } 646 646 }
