X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_libesmtp.c;h=11ea9933e75f67cd70ff4ee0b6b29cf5b3df14e7;hp=ceab41b4062cbe002c909fa67f31935d14f2af1b;hb=2a06362a155582cd59ae2ef6f0df71694a7eede3;hpb=ecaab35b973fbceb58b5ed174971c82762cc0199 diff --git a/mutt_libesmtp.c b/mutt_libesmtp.c index ceab41b..11ea993 100644 --- a/mutt_libesmtp.c +++ b/mutt_libesmtp.c @@ -288,8 +288,8 @@ int mutt_libesmtp_check_usetls (const char* option, unsigned long p, char* val = (char*) p; if (!val || !*val) return (1); - if (str_ncmp (val, "enabled", 7) != 0 && - str_ncmp (val, "required", 8) != 0) { + if (m_strncmp(val, "enabled", 7) != 0 && + m_strncmp(val, "required", 8) != 0) { if (errbuf) snprintf (errbuf, errlen, _("'%s' is invalid for %s"), val, option); return (0);