-/*
- * escape_addresses.c -- Escape address components, hopefully per RFC 5322.
+/* escape_addresses.c -- Escape address components, hopefully per RFC 5322.
*
* This code is Copyright (c) 2012, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
if (strpbrk(name, chars_to_escape)) {
char *destp, *srcp;
/* Maximum space requirement would be if each character had
- to be escaped, plus enclosing double quotes, plus null termintor.
+ to be escaped, plus enclosing double quotes, plus NUL terminator.
E.g., 2 characters, "", would require 7, "\"\""0, where that 0
is '\0'. */
char *tmp = mh_xmalloc (2*strlen(name) + 3);