summaryrefslogtreecommitdiffstats
path: root/usr.sbin/httpd/src/support/logresolve.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/httpd/src/support/logresolve.c')
-rw-r--r--usr.sbin/httpd/src/support/logresolve.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/usr.sbin/httpd/src/support/logresolve.c b/usr.sbin/httpd/src/support/logresolve.c
index 10072570b3f..4d05e6fd651 100644
--- a/usr.sbin/httpd/src/support/logresolve.c
+++ b/usr.sbin/httpd/src/support/logresolve.c
@@ -44,15 +44,7 @@
#include <ctype.h>
-#if !defined(MPE) && !defined(WIN32)
-#ifndef BEOS
#include <arpa/inet.h>
-#else
-/* BeOS lacks the necessary files until we get the new networking */
-#include <netinet/in.h>
-#define NO_ADDRESS 4
-#endif /* BEOS */
-#endif /* !MPE && !WIN32*/
static void cgethost(struct in_addr ipnum, char *string, int check);
static int getline(char *s, int n);
@@ -280,11 +272,6 @@ int main (int argc, char *argv[])
char *bar, hoststring[MAXDNAME + 1], line[MAXLINE], *statfile;
int i, check;
-#ifdef WIN32
- WSADATA wsaData;
- WSAStartup(0x101, &wsaData);
-#endif
-
check = 0;
statfile = NULL;
for (i = 1; i < argc; i++) {
@@ -340,10 +327,6 @@ int main (int argc, char *argv[])
puts(hoststring);
}
-#ifdef WIN32
- WSACleanup();
-#endif
-
if (statfile != NULL) {
FILE *fp;
fp = fopen(statfile, "w");