X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_ssl_gnutls.c;h=2b44e2611567026e0551d58caa0c4cf132415312;hp=f6d8b2d6c6f0142099a3dddbf871543e67cddce6;hb=ae0ce4dfcafa0c3820f107c5bfa8bd06e5272b57;hpb=9a1efcc01ddeca4106847f8eb28a704aca2dcf0b diff --git a/mutt_ssl_gnutls.c b/mutt_ssl_gnutls.c index f6d8b2d..2b44e26 100644 --- a/mutt_ssl_gnutls.c +++ b/mutt_ssl_gnutls.c @@ -21,7 +21,9 @@ #endif #include +#include #include +#include #include "mutt.h" #include "mutt_socket.h" @@ -29,7 +31,6 @@ #include "mutt_menu.h" #include "mutt_ssl.h" -#include "lib/str.h" #include "lib/rx.h" typedef struct _tlssockdata { @@ -415,8 +416,8 @@ static int tls_check_stored_hostname (const gnutls_datum * cert, if (regexec (&preg, linestr, 3, pmatch, 0) == 0) { linestr[pmatch[1].rm_eo] = '\0'; linestr[pmatch[2].rm_eo] = '\0'; - if (str_cmp (linestr + pmatch[1].rm_so, hostname) == 0 && - str_cmp (linestr + pmatch[2].rm_so, buf) == 0) { + if (m_strcmp(linestr + pmatch[1].rm_so, hostname) == 0 && + m_strcmp(linestr + pmatch[2].rm_so, buf) == 0) { regfree (&preg); p_delete(&linestr); fclose (fp);