]> diplodocus.org Git - nmh/blobdiff - sbr/m_name.c
Remove ./configure's --enable-debug support; it did nothing.
[nmh] / sbr / m_name.c
index dd8303e352d02adad01c58743bb5f219b77b66d2..2289e82da7251b08209c3a274d0d1758aeb1689d 100644 (file)
@@ -2,20 +2,26 @@
 /*
  * m_name.c -- return a message number as a string
  *
- * $Id$
+ * This code is Copyright (c) 2002, by the authors of nmh.  See the
+ * COPYRIGHT file in the root directory of the nmh distribution for
+ * complete copyright information.
  */
 
+#include <limits.h>
 #include <h/mh.h>
 
-static char name[BUFSIZ];
-
+#define STR(s) #s
+#define SIZE(n) (sizeof STR(n)) /* Includes NUL. */
 
 char *
 m_name (int num)
 {
+    static char name[SIZE(INT_MAX)];
+
     if (num <= 0)
        return "?";
 
-    snprintf (name, sizeof(name), "%d", num);
+    sprintf(name, "%d", num);
+
     return name;
 }