]> git.marmaro.de Git - mmh/blobdiff - sbr/mts.c
Removed the mhlproc profile entry. Call mhl directly.
[mmh] / sbr / mts.c
index dd193bc4e53a30a59b6d7479fcb1a965a8c8c4c6..a4644931af50f2aa01a767734e8c6259d1f87c52 100644 (file)
--- a/sbr/mts.c
+++ b/sbr/mts.c
@@ -70,34 +70,6 @@ LocalName(void)
 }
 
 
-/*
-** This is only for UUCP mail.  It gets the hostname
-** as part of the UUCP "domain".
-*/
-char *
-SystemName(void)
-{
-       static char buffer[BUFSIZ] = "";
-
-#ifdef HAVE_UNAME
-       struct utsname name;
-#endif
-
-       /* check if we have cached the system name */
-       if (buffer[0])
-               return buffer;
-
-#ifdef HAVE_UNAME
-       uname(&name);
-       strncpy(buffer, name.nodename, sizeof(buffer));
-#else
-       gethostname(buffer, sizeof(buffer));
-#endif
-
-       return buffer;
-}
-
-
 /*
 ** Get the username of current user
 */