X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=buffy.c;h=4d79995e87e0bf51ab47efaa06ea510553abbc32;hb=42a4f6bf2d89d9c898c3fbdd849815b79130d631;hp=c1dadeb5d5aec1613e7b7a1dfeca5910863311ee;hpb=68d3f8c8e978c7acfcd115d9a3e895cf0fc4f71e;p=apps%2Fmadmutt.git diff --git a/buffy.c b/buffy.c index c1dadeb..4d79995 100644 --- a/buffy.c +++ b/buffy.c @@ -16,8 +16,8 @@ #include "mutt.h" #include "buffy.h" -#include "mailbox.h" #include "mx.h" +#include "mh.h" #include "sidebar.h" #include "mutt_curses.h" @@ -71,13 +71,13 @@ int fseek_last_message (FILE * f) * reads will be on block boundaries, which might increase efficiency. */ while ((pos -= bytes_read) >= 0) { /* we save in the buffer at the end the first 7 chars from the last read */ - strncpy (buffer + BUFSIZ, buffer, 5 + 2); /* 2 == 2 * mutt_strlen(CRLF) */ + strncpy (buffer + BUFSIZ, buffer, 5 + 2); /* 2 == 2 * safe_strlen(CRLF) */ fseek (f, pos, SEEK_SET); bytes_read = fread (buffer, sizeof (char), bytes_read, f); if (bytes_read == -1) return -1; for (i = bytes_read; --i >= 0;) - if (!mutt_strncmp (buffer + i, "\n\nFrom ", mutt_strlen ("\n\nFrom "))) { /* found it - go to the beginning of the From */ + if (!safe_strncmp (buffer + i, "\n\nFrom ", safe_strlen ("\n\nFrom "))) { /* found it - go to the beginning of the From */ fseek (f, pos + i + 2, SEEK_SET); return 0; } @@ -85,7 +85,7 @@ int fseek_last_message (FILE * f) } /* here we are at the beginning of the file */ - if (!mutt_strncmp ("From ", buffer, 5)) { + if (!safe_strncmp ("From ", buffer, 5)) { fseek (f, 0, 0); return (0); } @@ -135,19 +135,21 @@ int test_new_folder (const char *path) BUFFY *mutt_find_mailbox (const char *path) { - BUFFY *tmp = NULL; struct stat sb; struct stat tmp_sb; + int i = 0; if (stat (path, &sb) != 0) return NULL; - for (tmp = Incoming; tmp; tmp = tmp->next) { - if (stat (tmp->path, &tmp_sb) == 0 && - sb.st_dev == tmp_sb.st_dev && sb.st_ino == tmp_sb.st_ino) - break; + if (!list_empty(Incoming)) { + for (i = 0; i < Incoming->length; i++) { + if (stat (Incoming->data[i], &tmp_sb) == 0 && + sb.st_dev == tmp_sb.st_dev && sb.st_ino == tmp_sb.st_ino) + return ((BUFFY*) Incoming->data[i]); + } } - return tmp; + return (NULL); } void mutt_update_mailbox (BUFFY * b) @@ -176,7 +178,7 @@ int buffy_lookup (const char* path) { if (list_empty(Incoming) || !path || !*path) return (-1); for (i = 0; i < Incoming->length; i++) { - if (mutt_strcmp (((BUFFY*) Incoming->data[i])->path, path) == 0) + if (safe_strcmp (((BUFFY*) Incoming->data[i])->path, path) == 0) return (i); } return (-1); @@ -196,7 +198,7 @@ int mutt_parse_mailboxes (BUFFER * path, BUFFER * s, unsigned long data, mutt_extract_token (path, s, 0); strfcpy (buf, path->data, sizeof (buf)); - if (data == M_UNMAILBOXES && mutt_strcmp (buf, "*") == 0) { + if (data == M_UNMAILBOXES && safe_strcmp (buf, "*") == 0) { list_del (&Incoming, buffy_free); return 0; } @@ -320,17 +322,17 @@ int mutt_buffy_check (int force) for (i = 0; i < Incoming->length; i++) { tmp = (BUFFY*) Incoming->data[i]; #ifdef USE_IMAP - if (mx_is_imap (tmp->path)) + if (mx_get_magic (tmp->path) == M_IMAP) tmp->magic = M_IMAP; else #endif #ifdef USE_POP - if (mx_is_pop (tmp->path)) + if (mx_get_magic (tmp->path) == M_IMAP) tmp->magic = M_POP; else #endif #ifdef USE_NNTP - if ((tmp->magic == M_NNTP) || mx_is_nntp (tmp->path)) + if (mx_get_magic (tmp->path) == M_NNTP) tmp->magic = M_NNTP; else #endif @@ -358,7 +360,7 @@ int mutt_buffy_check (int force) #ifdef USE_NNTP || tmp->magic == M_NNTP #endif - )? mutt_strcmp (tmp->path, + )? safe_strcmp (tmp->path, Context->path) : (sb. st_dev != @@ -561,7 +563,7 @@ int mutt_buffy_list (void) pos = 0; first = 1; buffylist[0] = 0; - pos += mutt_strlen (strncat (buffylist, _("New mail in "), sizeof (buffylist) - 1 - pos)); /* __STRNCAT_CHECKED__ */ + pos += safe_strlen (strncat (buffylist, _("New mail in "), sizeof (buffylist) - 1 - pos)); /* __STRNCAT_CHECKED__ */ if (Incoming) { for (i = 0; i < Incoming->length; i++) { tmp = (BUFFY*) Incoming->data[i]; @@ -572,19 +574,19 @@ int mutt_buffy_list (void) strfcpy (path, tmp->path, sizeof (path)); mutt_pretty_mailbox (path); - if (!first && pos + mutt_strlen (path) >= COLS - 7) + if (!first && pos + safe_strlen (path) >= COLS - 7) break; if (!first) - pos += mutt_strlen (strncat (buffylist + pos, ", ", sizeof (buffylist) - 1 - pos)); /* __STRNCAT_CHECKED__ */ + pos += safe_strlen (strncat (buffylist + pos, ", ", sizeof (buffylist) - 1 - pos)); /* __STRNCAT_CHECKED__ */ /* Prepend an asterisk to mailboxes not already notified */ if (!tmp->notified) { - /* pos += mutt_strlen (strncat(buffylist + pos, "*", sizeof(buffylist)-1-pos)); __STRNCAT_CHECKED__ */ + /* pos += safe_strlen (strncat(buffylist + pos, "*", sizeof(buffylist)-1-pos)); __STRNCAT_CHECKED__ */ tmp->notified = 1; BuffyNotify--; } - pos += mutt_strlen (strncat (buffylist + pos, path, sizeof (buffylist) - 1 - pos)); /* __STRNCAT_CHECKED__ */ + pos += safe_strlen (strncat (buffylist + pos, path, sizeof (buffylist) - 1 - pos)); /* __STRNCAT_CHECKED__ */ first = 0; } }