Added include of mh.h for snprintf() prototype.
[mmh] / zotnet / mts / mts.c
index 31d96bd..61a604c 100644 (file)
@@ -5,6 +5,7 @@
  * $Id$
  */
 
+#include "h/mh.h"   /* for snprintf() */
 #include <h/nmh.h>
 
 #define nmhetcdir(file) NMHETCDIR#file
@@ -285,9 +286,9 @@ LocalName (void)
        /* first get our local name */
        gethostname (buffer, sizeof(buffer));
 #endif
-#ifndef BIND
+#ifdef HAVE_SETHOSTENT
        sethostent (1);
-#endif
+#endif 
        /* now fully qualify our name */
        if ((hp = gethostbyname (buffer)))
            strncpy (buffer, hp->h_name, sizeof(buffer));