X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=pop%2Fpop_lib.c;fp=pop%2Fpop_lib.c;h=d32bf3786ea57e660f957b9b81e76b101b30af87;hp=285ed449798d5f091cc6f140896ae990cf6d54ca;hb=c98480f8568e6c1bc927c6c5f2b5e80b4aa6548c;hpb=46874ad2a0d0a6a66e4bfec16dfa349bf07c632a diff --git a/pop/pop_lib.c b/pop/pop_lib.c index 285ed44..d32bf37 100644 --- a/pop/pop_lib.c +++ b/pop/pop_lib.c @@ -67,7 +67,7 @@ void pop_error (POP_DATA * pop_data, char *msg) t = strchr (pop_data->err_msg, '\0'); c = msg; - if (!str_ncmp (msg, "-ERR ", 5)) { + if (!m_strncmp(msg, "-ERR ", 5)) { c2 = msg + 5; SKIPWS (c2); @@ -222,7 +222,7 @@ pop_query_status pop_connect (POP_DATA * pop_data) pop_data->status = POP_CONNECTED; - if (str_ncmp (buf, "+OK", 3)) { + if (m_strncmp(buf, "+OK", 3)) { *pop_data->err_msg = '\0'; pop_error (pop_data, buf); mutt_error ("%s", pop_data->err_msg); @@ -411,7 +411,7 @@ pop_query_status pop_query_d (POP_DATA * pop_data, char *buf, size_t buflen, con pop_data->status = POP_DISCONNECTED; return PQ_NOT_CONNECTED; } - if (!str_ncmp (buf, "+OK", 3)) + if (!m_strncmp(buf, "+OK", 3)) return PQ_OK; pop_error (pop_data, buf);