X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=account.c;h=33e64b2622d31b4e0b23f42bd39a31ccdcb1e7d2;hp=a85782921c3b6ebd4c62966c5ca17c36bd3e644a;hb=53ceb3f257ec0af78a9129a8a565e8ca2bb03903;hpb=df70e07e24add1869bcc9b7af2277d9d0c09a281 diff --git a/account.c b/account.c index a857829..33e64b2 100644 --- a/account.c +++ b/account.c @@ -1,19 +1,10 @@ /* + * Copyright notice from original mutt: * Copyright (C) 2000-3 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. */ /* remote host account manipulation (POP/IMAP) */ @@ -26,6 +17,10 @@ #include "account.h" #include "url.h" +#include "lib/mem.h" +#include "lib/intl.h" +#include "lib/str.h" + /* mutt_account_match: compare account info (host/port/user) */ int mutt_account_match (const ACCOUNT * a1, const ACCOUNT * a2) { @@ -54,11 +49,11 @@ int mutt_account_match (const ACCOUNT * a1, const ACCOUNT * a2) #endif if (a1->flags & a2->flags & M_ACCT_USER) - return (!strcmp (a1->user, a2->user)); + return (!safe_strcmp (a1->user, a2->user)); if (a1->flags & M_ACCT_USER) - return (!strcmp (a1->user, user)); + return (!safe_strcmp (a1->user, user)); if (a2->flags & M_ACCT_USER) - return (!strcmp (a2->user, user)); + return (!safe_strcmp (a2->user, user)); return 1; }