X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=pop%2Fpop_auth.c;h=09f076173c3ca8b362db6fe1ef237731d31f805c;hb=7f7a0be369840b290248e5b0302beb447fa1b3cd;hp=08d3183b9e3d5221dcb3e3867533084c9db4c49d;hpb=617e7d83d14e14e6a520a48e75437211b16c8834;p=apps%2Fmadmutt.git diff --git a/pop/pop_auth.c b/pop/pop_auth.c index 08d3183..09f0761 100644 --- a/pop/pop_auth.c +++ b/pop/pop_auth.c @@ -12,6 +12,7 @@ #endif #include +#include #include "mutt.h" #include "ascii.h" @@ -19,7 +20,6 @@ #include "md5.h" #include "pop.h" -#include "lib/intl.h" #include "lib/debug.h" #include @@ -166,7 +166,7 @@ void pop_apop_timestamp (POP_DATA * pop_data, char *buf) if ((p1 = strchr (buf, '<')) && (p2 = strchr (p1, '>'))) { p2[1] = '\0'; - pop_data->timestamp = str_dup (p1); + pop_data->timestamp = m_strdup(p1); } } @@ -305,7 +305,7 @@ pop_query_status pop_authenticate (POP_DATA * pop_data) if (PopAuthenticators && *PopAuthenticators) { /* Try user-specified list of authentication methods */ - methods = str_dup (PopAuthenticators); + methods = m_strdup(PopAuthenticators); method = methods; while (method) {