]> git.marmaro.de Git - mmh/blobdiff - zotnet/mts/mts.c
replaced the BIND guess (based on BSDishness) with checks for gethostbyname and setho...
[mmh] / zotnet / mts / mts.c
index 31d96bdd92a8d43985c5e78bd5a139d3856042ba..f53a8be62f82808fb0f2bc10ce415d8341e910a2 100644 (file)
@@ -285,9 +285,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));