X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=imap%2Fauth.c;h=74aee4cfd54c48875403062e1c2a480f4e6b8cfe;hp=6ec3c1b4fe11a6db33a2019ed8b76add8566fdbc;hb=ac813896ca32d850febc2d95065ac4fa040f11f9;hpb=ba5e3af4ea19e1d20c80941c077039871ec84258 diff --git a/imap/auth.c b/imap/auth.c index 6ec3c1b..74aee4c 100644 --- a/imap/auth.c +++ b/imap/auth.c @@ -15,9 +15,11 @@ # include "config.h" #endif -#include "lib/mem.h" -#include "lib/intl.h" -#include "lib/debug.h" +#include +#include + +#include +#include #include "mutt.h" #include "imap_private.h" @@ -38,7 +40,7 @@ static imap_auth_t imap_authenticators[] = { #endif {imap_auth_login, "login"}, - {NULL} + {NULL, NULL} }; /* imap_authenticate: Attempt to authenticate using either user-specified @@ -53,7 +55,7 @@ int imap_authenticate (IMAP_DATA * idata) if (ImapAuthenticators && *ImapAuthenticators) { /* Try user-specified list of authentication methods */ - methods = str_dup (ImapAuthenticators); + methods = m_strdup(ImapAuthenticators); for (method = methods; method; method = delim) { delim = strchr (method, ':'); @@ -70,7 +72,7 @@ int imap_authenticate (IMAP_DATA * idata) !ascii_strcasecmp (authenticator->method, method)) if ((r = authenticator->authenticate (idata, method)) != IMAP_AUTH_UNAVAIL) { - mem_free (&methods); + p_delete(&methods); return r; } @@ -78,7 +80,7 @@ int imap_authenticate (IMAP_DATA * idata) } } - mem_free (&methods); + p_delete(&methods); } else { /* Fall back to default: any authenticator */