]> granicus.if.org Git - neomutt/commitdiff
replace 'progress_t' with 'struct Progress'
authorRichard Russon <rich@flatcap.org>
Mon, 15 May 2017 13:49:35 +0000 (14:49 +0100)
committerRichard Russon <rich@flatcap.org>
Mon, 15 May 2017 23:05:11 +0000 (00:05 +0100)
15 files changed:
curs_lib.c
curs_main.c
imap/imap.c
imap/imap_private.h
imap/message.c
mbox.c
mh.c
mutt_curses.h
mutt_notmuch.c
nntp.c
pattern.c
pop.c
pop.h
pop_lib.c
smtp.c

index 5eac76ec61c61781cbd16dc047cbacf7c5ce4e80..c15525e968c06ab332801cc897ca7a9b17a7cc25 100644 (file)
@@ -418,7 +418,7 @@ void mutt_curses_message(const char *fmt, ...)
   va_end(ap);
 }
 
-void mutt_progress_init(progress_t *progress, const char *msg,
+void mutt_progress_init(struct Progress *progress, const char *msg,
                         unsigned short flags, unsigned short inc, long size)
 {
   struct timeval tv = { 0, 0 };
@@ -428,7 +428,7 @@ void mutt_progress_init(progress_t *progress, const char *msg,
   if (option(OPTNOCURSES))
     return;
 
-  memset(progress, 0, sizeof(progress_t));
+  memset(progress, 0, sizeof(struct Progress));
   progress->inc = inc;
   progress->flags = flags;
   progress->msg = msg;
@@ -517,7 +517,7 @@ static void message_bar(int percent, const char *fmt, ...)
   mutt_refresh();
 }
 
-void mutt_progress_update(progress_t *progress, long pos, int percent)
+void mutt_progress_update(struct Progress *progress, long pos, int percent)
 {
   char posstr[SHORT_STRING];
   short update = 0;
index 55eba26811ded1d0aefff106c8dc0f3cceed3f7e..cd11054126ec1fefcab09463e956671c2111bcae 100644 (file)
@@ -1837,7 +1837,7 @@ int mutt_index_menu(void)
         if (tag)
         {
           char msgbuf[STRING];
-          progress_t progress;
+          struct Progress progress;
           int px;
 
           if (!Context->quiet)
index b5efe175c1f5efdcc2b38add3cf2c3406edc4e2b..686d7730bc8e49b9d9b40f52699606d1daa3e96d 100644 (file)
@@ -195,7 +195,7 @@ void imap_logout_all(void)
 /* imap_read_literal: read bytes bytes from server into file. Not explicitly
  *   buffered, relies on FILE buffering. NOTE: strips \r from \r\n.
  *   Apparently even literals use \r\n-terminated strings ?! */
-int imap_read_literal(FILE *fp, IMAP_DATA *idata, long bytes, progress_t *pbar)
+int imap_read_literal(FILE *fp, IMAP_DATA *idata, long bytes, struct Progress *pbar)
 {
   long pos;
   char c;
index 2e6174a7f3868879027a72ffaf1e31f1fbe2dc3a..ee4d54a7d0d386ca09d8989af0b3ebeef6486cae 100644 (file)
@@ -239,7 +239,7 @@ int imap_exec_msgset(IMAP_DATA *idata, const char *pre, const char *post,
 int imap_open_connection(IMAP_DATA *idata);
 void imap_close_connection(IMAP_DATA *idata);
 IMAP_DATA *imap_conn_find(const struct Account *account, int flags);
-int imap_read_literal(FILE *fp, IMAP_DATA *idata, long bytes, progress_t *pbar);
+int imap_read_literal(FILE *fp, IMAP_DATA *idata, long bytes, struct Progress *pbar);
 void imap_expunge_mailbox(IMAP_DATA *idata);
 void imap_logout(IMAP_DATA **idata);
 int imap_sync_message(IMAP_DATA *idata, struct Header *hdr, struct Buffer *cmd, int *err_continue);
index e8e8d3cf25f0ba8266817cc54bb895bbaba025bc..f224271a20f677ed7d1a818f3200c942f2b6216e 100644 (file)
@@ -365,7 +365,7 @@ int imap_read_headers(IMAP_DATA *idata, int msgbegin, int msgend)
       "DATE FROM SUBJECT TO CC MESSAGE-ID REFERENCES CONTENT-TYPE "
       "CONTENT-DESCRIPTION IN-REPLY-TO REPLY-TO LINES LIST-POST X-LABEL "
       "X-KEYWORDS X-MOZILLA-KEYS KEYWORDS X-ORIGINAL-TO";
-  progress_t progress;
+  struct Progress progress;
   int retval = -1;
 
 #ifdef USE_HCACHE
@@ -694,7 +694,7 @@ int imap_fetch_message(struct Context *ctx, struct Message *msg, int msgno)
   char path[_POSIX_PATH_MAX];
   char *pc = NULL;
   long bytes;
-  progress_t progressbar;
+  struct Progress progressbar;
   int uid;
   int cacheno;
   IMAP_CACHE *cache = NULL;
@@ -917,7 +917,7 @@ int imap_append_message(struct Context *ctx, struct Message *msg)
   char internaldate[IMAP_DATELEN];
   char imap_flags[SHORT_STRING];
   size_t len;
-  progress_t progressbar;
+  struct Progress progressbar;
   size_t sent;
   int c, last;
   IMAP_MBOX mx;
diff --git a/mbox.c b/mbox.c
index 5357e5696d4289a76778ca1a56bc0852f9b0580d..4d5f9069fd8eb2050283ea132af1ef607b2f2b5e 100644 (file)
--- a/mbox.c
+++ b/mbox.c
@@ -87,7 +87,7 @@ static int mmdf_parse_mailbox(struct Context *ctx)
 #ifdef NFS_ATTRIBUTE_HACK
   struct utimbuf newtime;
 #endif
-  progress_t progress;
+  struct Progress progress;
   char msgbuf[STRING];
 
   if (stat(ctx->path, &sb) == -1)
@@ -250,7 +250,7 @@ static int mbox_parse_mailbox(struct Context *ctx)
 #ifdef NFS_ATTRIBUTE_HACK
   struct utimbuf newtime;
 #endif
-  progress_t progress;
+  struct Progress progress;
   char msgbuf[STRING];
 
   /* Save information about the folder at the time we opened it. */
@@ -1008,7 +1008,7 @@ static int mbox_sync_mailbox(struct Context *ctx, int *index_hint)
   struct m_update_t *newOffset = NULL;
   struct m_update_t *oldOffset = NULL;
   FILE *fp = NULL;
-  progress_t progress;
+  struct Progress progress;
   char msgbuf[STRING];
   struct Buffy *tmp = NULL;
 
diff --git a/mh.c b/mh.c
index 7a592f366819413f71bd2a579cbb5fa32be3cc7e..9cf8cc5b680382d203d42f8176a36a984861a4d5 100644 (file)
--- a/mh.c
+++ b/mh.c
@@ -784,7 +784,7 @@ struct Header *maildir_parse_message(int magic, const char *fname, int is_old, s
 }
 
 static int maildir_parse_dir(struct Context *ctx, struct maildir ***last,
-                             const char *subdir, int *count, progress_t *progress)
+                             const char *subdir, int *count, struct Progress *progress)
 {
   DIR *dirp = NULL;
   struct dirent *de = NULL;
@@ -1071,7 +1071,7 @@ static struct maildir *skip_duplicates(struct maildir *p, struct maildir **last)
 /*
  * This function does the second parsing pass
  */
-static void maildir_delayed_parsing(struct Context *ctx, struct maildir **md, progress_t *progress)
+static void maildir_delayed_parsing(struct Context *ctx, struct maildir **md, struct Progress *progress)
 {
   struct maildir *p, *last = NULL;
   char fn[_POSIX_PATH_MAX];
@@ -1217,7 +1217,7 @@ static int mh_read_dir(struct Context *ctx, const char *subdir)
   struct mh_data *data = NULL;
   int count;
   char msgbuf[STRING];
-  progress_t progress;
+  struct Progress progress;
 
   memset(&mhs, 0, sizeof(mhs));
   if (!ctx->quiet)
@@ -2251,7 +2251,7 @@ static int mh_sync_mailbox(struct Context *ctx, int *index_hint)
   header_cache_t *hc = NULL;
 #endif /* USE_HCACHE */
   char msgbuf[STRING];
-  progress_t progress;
+  struct Progress progress;
 
   if (ctx->magic == MUTT_MH)
     i = mh_check_mailbox(ctx, index_hint);
index c3d91d68cce902941ea7039d8df41a282ee7e029..4bb108c5ba1353e4d117a003d8ea134a5f072af5 100644 (file)
@@ -201,7 +201,7 @@ typedef struct color_line
 #define MUTT_PROGRESS_SIZE (1 << 0) /* traffic-based progress */
 #define MUTT_PROGRESS_MSG  (1 << 1) /* message-based progress */
 
-typedef struct
+struct Progress
 {
   unsigned short inc;
   unsigned short flags;
@@ -210,14 +210,14 @@ typedef struct
   long size;
   unsigned int timestamp;
   char sizestr[SHORT_STRING];
-} progress_t;
+};
 
-void mutt_progress_init(progress_t *progress, const char *msg,
+void mutt_progress_init(struct Progress *progress, const char *msg,
                         unsigned short flags, unsigned short inc, long size);
 /* If percent is positive, it is displayed as percentage, otherwise
  * percentage is calculated from progress->size and pos if progress
  * was initialized with positive size, otherwise no percentage is shown */
-void mutt_progress_update(progress_t *progress, long pos, int percent);
+void mutt_progress_update(struct Progress *progress, long pos, int percent);
 
 /* Windows for different parts of the screen */
 struct MuttWindow
index 2585fb8f8912956e1a90971f97e718fab51b1732..0b0f101168fafdcd0a16baf4e541e6a7425eb0e9 100644 (file)
@@ -147,7 +147,7 @@ struct nm_ctxdata
 
   struct uri_tag *query_items;
 
-  progress_t progress; /**< A progress bar */
+  struct Progress progress; /**< A progress bar */
   int oldmsgcount;
   int ignmsgcount; /**< Ignored messages */
 
@@ -2305,7 +2305,7 @@ static int nm_sync_mailbox(struct Context *ctx, int *index_hint)
   struct nm_ctxdata *data = get_ctxdata(ctx);
   int i, rc = 0;
   char msgbuf[STRING];
-  progress_t progress;
+  struct Progress progress;
   char *uri = ctx->path;
   int changed = 0;
 
diff --git a/nntp.c b/nntp.c
index c6c5c24d81e1714aad9dca7e241523c8bec99dec..327caa663f38527e110873f64dc5d20fa2d34c94 100644 (file)
--- a/nntp.c
+++ b/nntp.c
@@ -804,7 +804,7 @@ static int nntp_fetch_lines(NNTP_DATA *nntp_data, char *query, size_t qlen,
     char *line = NULL;
     unsigned int lines = 0;
     size_t off = 0;
-    progress_t progress;
+    struct Progress progress;
 
     if (msg)
       mutt_progress_init(&progress, msg, MUTT_PROGRESS_MSG, ReadInc, -1);
@@ -979,7 +979,7 @@ typedef struct
   anum_t last;
   int restore;
   unsigned char *messages;
-  progress_t progress;
+  struct Progress progress;
 #ifdef USE_HCACHE
   header_cache_t *hc;
 #endif
@@ -2214,7 +2214,7 @@ int nntp_check_new_groups(NNTP_SERVER *nserv)
     if (option(OPTLOADDESC))
     {
       unsigned int count = 0;
-      progress_t progress;
+      struct Progress progress;
 
       mutt_progress_init(&progress, _("Loading descriptions..."),
                          MUTT_PROGRESS_MSG, ReadInc, nserv->groups_num - i);
index bf676175d13a2e7d9ac8e11a1e474fc99514d8a3..4cdd7b30a033a72875e56199cfe204e425133a19 100644 (file)
--- a/pattern.c
+++ b/pattern.c
@@ -1771,7 +1771,7 @@ int mutt_pattern_func(int op, char *prompt)
   char buf[LONG_STRING] = "", *simple = NULL;
   struct Buffer err;
   int i;
-  progress_t progress;
+  struct Progress progress;
 
   strfcpy(buf, NONULL(Context->pattern), sizeof(buf));
   if (prompt || op != MUTT_LIMIT)
@@ -1891,7 +1891,7 @@ int mutt_search_command(int cur, int op)
   char temp[LONG_STRING];
   int incr;
   struct Header *h = NULL;
-  progress_t progress;
+  struct Progress progress;
   const char *msg = NULL;
 
   if (!*LastSearch || (op != OP_SEARCH_NEXT && op != OP_SEARCH_OPPOSITE))
diff --git a/pop.c b/pop.c
index c7412aeefefd86db0b2d2dd137fdf5494b4c4580..76155946471548ac30d0cf89739f8cf4591458df 100644 (file)
--- a/pop.c
+++ b/pop.c
@@ -233,7 +233,7 @@ static int pop_fetch_headers(struct Context *ctx)
   int i, ret, old_count, new_count, deleted;
   unsigned short hcached = 0, bcached;
   POP_DATA *pop_data = (POP_DATA *) ctx->data;
-  progress_t progress;
+  struct Progress progress;
 
 #ifdef USE_HCACHE
   header_cache_t *hc = NULL;
@@ -514,7 +514,7 @@ static int pop_fetch_message(struct Context *ctx, struct Message *msg, int msgno
   void *uidl = NULL;
   char buf[LONG_STRING];
   char path[_POSIX_PATH_MAX];
-  progress_t progressbar;
+  struct Progress progressbar;
   POP_DATA *pop_data = (POP_DATA *) ctx->data;
   POP_CACHE *cache = NULL;
   struct Header *h = ctx->hdrs[msgno];
@@ -666,7 +666,7 @@ static int pop_sync_mailbox(struct Context *ctx, int *index_hint)
   int i, j, ret = 0;
   char buf[LONG_STRING];
   POP_DATA *pop_data = (POP_DATA *) ctx->data;
-  progress_t progress;
+  struct Progress progress;
 #ifdef USE_HCACHE
   header_cache_t *hc = NULL;
 #endif
diff --git a/pop.h b/pop.h
index 460f988fbd20b5097c71b301c002680d272973b7..76a0070df2cab48d8abebeffbd2b5dbbf1f16eb3 100644 (file)
--- a/pop.h
+++ b/pop.h
@@ -97,7 +97,7 @@ int pop_parse_path(const char *path, struct Account *acct);
 int pop_connect(POP_DATA *pop_data);
 int pop_open_connection(POP_DATA *pop_data);
 int pop_query_d(POP_DATA *pop_data, char *buf, size_t buflen, char *msg);
-int pop_fetch_data(POP_DATA *pop_data, char *query, progress_t *progressbar,
+int pop_fetch_data(POP_DATA *pop_data, char *query, struct Progress *progressbar,
                    int (*funct)(char *, void *), void *data);
 int pop_reconnect(struct Context *ctx);
 void pop_logout(struct Context *ctx);
index 6a62b38cc0e2b18e563e6f9dc6eebe18219ba58c..5bc7b237e9bf4a3800903d6b947fa0aa0ed769ad 100644 (file)
--- a/pop_lib.c
+++ b/pop_lib.c
@@ -458,7 +458,7 @@ int pop_query_d(POP_DATA *pop_data, char *buf, size_t buflen, char *msg)
  * -2 - invalid command or execution error,
  * -3 - error in funct(*line, *data)
  */
-int pop_fetch_data(POP_DATA *pop_data, char *query, progress_t *progressbar,
+int pop_fetch_data(POP_DATA *pop_data, char *query, struct Progress *progressbar,
                    int (*funct)(char *, void *), void *data)
 {
   char buf[LONG_STRING];
@@ -550,7 +550,7 @@ int pop_reconnect(struct Context *ctx)
 {
   int ret;
   POP_DATA *pop_data = (POP_DATA *) ctx->data;
-  progress_t progressbar;
+  struct Progress progressbar;
 
   if (pop_data->status == POP_CONNECTED)
     return 0;
diff --git a/smtp.c b/smtp.c
index 7078ed822e7d2610421b694746af721a7d214871..0842e3cc582d2b7da6c8e2be0755fd5174e170db 100644 (file)
--- a/smtp.c
+++ b/smtp.c
@@ -159,7 +159,7 @@ static int smtp_data(struct Connection *conn, const char *msgfile)
 {
   char buf[1024];
   FILE *fp = NULL;
-  progress_t progress;
+  struct Progress progress;
   struct stat st;
   int r, term = 0;
   size_t buflen = 0;