X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=edit.c;h=1674248137caa2ca22a36eb77737330be10a3630;hp=8cd407beadbdc2ca36552ca314fcfd15d98a2957;hb=fbce8661618b322f5cfd8efd6ead47163b04d69a;hpb=1d7238dc43311c4545883dc1151bf5b142d88c0b diff --git a/edit.c b/edit.c index 8cd407b..1674248 100644 --- a/edit.c +++ b/edit.c @@ -18,6 +18,10 @@ /* Close approximation of the mailx(1) builtin editor for sending mail. */ +#if HAVE_CONFIG_H +# include "config.h" +#endif + #include "mutt.h" #include "mutt_curses.h" #include "mutt_idna.h" @@ -463,7 +467,7 @@ int mutt_builtin_editor (const char *path, HEADER *msg, HEADER *cur) done = 1; else { - strncat (tmp, "\n", sizeof(tmp)); tmp[sizeof(tmp) - 1] = '\0'; + safe_strcat (tmp, sizeof (tmp), "\n"); if (buflen == bufmax) safe_realloc (&buf, sizeof (char *) * (bufmax += 25)); buf[buflen++] = safe_strdup (tmp[1] == '~' ? tmp + 1 : tmp);