X-Git-Url: http://git.madism.org/?a=blobdiff_plain;ds=sidebyside;f=imap%2Fimap.c;h=5cce86d429d16235c5352da7bc5f3d215fc0869c;hb=590b3d82cd60994c06b2fae936008cdbc1a3611b;hp=270f137ee24127881439d21922c02d9798a5f88b;hpb=df70e07e24add1869bcc9b7af2277d9d0c09a281;p=apps%2Fmadmutt.git diff --git a/imap/imap.c b/imap/imap.c index 270f137..5cce86d 100644 --- a/imap/imap.c +++ b/imap/imap.c @@ -1,21 +1,12 @@ /* + * Copyright notice from original mutt: * Copyright (C) 1996-8 Michael R. Elkins * Copyright (C) 1996-9 Brandon Long * Copyright (C) 1999-2003 Brendan Cully - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * + * This file is part of mutt-ng, see http://www.muttng.org/. + * It's licensed under the GNU General Public License, + * please see the file GPL in the top level source directory. */ /* Support for IMAP4rev1, with the occasional nod to IMAP 4. */ @@ -37,6 +28,10 @@ # include "mutt_ssl.h" #endif +#include "lib/mem.h" +#include "lib/intl.h" +#include "lib/str.h" + #include #include #include @@ -605,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 { @@ -1401,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; }