X-Git-Url: http://git.madism.org/?a=blobdiff_plain;ds=sidebyside;f=imap%2Fimap.c;h=5cce86d429d16235c5352da7bc5f3d215fc0869c;hb=590b3d82cd60994c06b2fae936008cdbc1a3611b;hp=b97cea02f3e0d8267b9df2d208fe0cce6ce7c113;hpb=c3e57678c8be193fc137854020f3a90887be97c9;p=apps%2Fmadmutt.git diff --git a/imap/imap.c b/imap/imap.c index b97cea0..5cce86d 100644 --- a/imap/imap.c +++ b/imap/imap.c @@ -28,6 +28,10 @@ # include "mutt_ssl.h" #endif +#include "lib/mem.h" +#include "lib/intl.h" +#include "lib/str.h" + #include #include #include @@ -596,7 +600,7 @@ int imap_open_mailbox (CONTEXT * ctx) pc += 3; pc = imap_next_word (pc); - sscanf (pc, "%u", &(idata->uid_validity)); + sscanf (pc, "%lu", &(idata->uid_validity)); } #endif else { @@ -1392,14 +1396,14 @@ int imap_complete (char *dest, size_t dlen, char *path) /* if the folder isn't selectable, append delimiter to force browse * to enter it on second tab. */ if (noselect) { - clen = strlen (list_word); + clen = mutt_strlen (list_word); list_word[clen++] = delim; list_word[clen] = '\0'; } /* copy in first word */ if (!completions) { strfcpy (completion, list_word, sizeof (completion)); - matchlen = strlen (completion); + matchlen = mutt_strlen (completion); completions++; continue; }