X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_libesmtp.c;h=fd2a05a4ec741dc8bbde1abe756ae06205eaf5bf;hp=a8eb110322fba8fcd169d66511b989b72a786865;hb=7048f7d738dac900f2e76622f3d92b62f99b69a7;hpb=df70e07e24add1869bcc9b7af2277d9d0c09a281 diff --git a/mutt_libesmtp.c b/mutt_libesmtp.c index a8eb110..fd2a05a 100644 --- a/mutt_libesmtp.c +++ b/mutt_libesmtp.c @@ -1,4 +1,21 @@ +/* + * Copyright notice from original mutt: + * [none] + * + * This file is part of mutt-ng, see http://www.muttng.org/. + * It's licensed under the GNU General Public License, + * please see the file GPL in the top level source directory. + */ +#if HAVE_CONFIG_H +#include "config.h" +#endif + #include "mutt.h" + +#include "lib/mem.h" +#include "lib/intl.h" +#include "lib/str.h" + #include #include #include @@ -170,7 +187,7 @@ int mutt_invoke_libesmtp (ADDRESS * from, /* the sender */ /* Create hostname:port string and tell libesmtp */ /* len = SmtpHost len + colon + max port (65536 => 5 chars) + terminator */ - hostportlen = strlen (SmtpHost) + 7; + hostportlen = mutt_strlen (SmtpHost) + 7; hostportstr = safe_malloc (hostportlen); snprintf (hostportstr, hostportlen, "%s:%d", SmtpHost, SmtpPort); if (!smtp_set_server (session, hostportstr))