-
-/*
- * m_name.c -- return a message number as a string
+/* m_name.c -- return a message number as a string
*
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
if (num <= 0)
return "?";
- sprintf(name, "%d", num);
+ snprintf(name, sizeof name, "%d", num);
return name;
}