summaryrefslogtreecommitdiff
path: root/games/mangband/files/patch-ad
blob: 60fa2cb77dcbcf5dc136cd72b7bddb76e066d5db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
--- common/net-unix.c.orig	Sat Nov 22 10:47:36 1997
+++ common/net-unix.c	Wed Dec 30 18:12:07 1998
@@ -2461,11 +2461,14 @@
 #ifdef UNIX_SOCKETS
    strcpy(name, "localhost");
 #else
+    struct hostent      *he;
+#if 0
     struct hostent	*he, *xpilot_he, tmp;
     int			xpilot_len;
     char		*alias, *dot;
     char		xpilot_hostname[MAXHOSTNAMELEN];
     static const char	xpilot[] = "xpilot";
+#endif
 #ifdef VMS
     char                vms_inethost[MAXHOSTNAMELEN]   = "UCX$INET_HOST";
     char                vms_inetdomain[MAXHOSTNAMELEN] = "UCX$INET_DOMAIN";
@@ -2473,7 +2476,7 @@
     char                vms_domain[MAXHOSTNAMELEN];
     int                 namelen;
 #endif
-
+#if 0
     xpilot_len = strlen(xpilot);
 
     /* Make a wild guess that a "xpilot" hostname or alias is in this domain */
@@ -2484,7 +2487,7 @@
 	    xpilot_he = &tmp;
 	}
     }
-
+#endif
     gethostname(name, size);
     if ((he = gethostbyname(name)) == NULL) {
 	return;
@@ -2534,7 +2537,7 @@
 	    return;
 	}
     }
-
+#if 0
     /*
      * If a "xpilot" host is found compare if it's this one.
      * and if so, make the local name as "xpilot.*"
@@ -2573,6 +2576,7 @@
 	}
 	/* NOT REATCHED */
     }
+#endif
 #endif
 } /* GetLocalHostName */