aboutsummaryrefslogtreecommitdiffstats
path: root/ftp.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-04-07 15:26:10 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-04-07 15:26:10 +0000
commit5d0bedb68b98a6d0e8608ee913dd8efe0acaab1d (patch)
tree86d146ffeded8616bc01a6550ac2b5bcab02e631 /ftp.c
parent[w3m-dev 03846] fix use_history (diff)
downloadw3m-5d0bedb68b98a6d0e8608ee913dd8efe0acaab1d.tar.gz
w3m-5d0bedb68b98a6d0e8608ee913dd8efe0acaab1d.zip
[w3m-dev 03849] fix no INET6
* ftp.c: no need ifdef INET6 From: ABE Yuji <cbo46560@pop12.odn.ne.jp>
Diffstat (limited to '')
-rw-r--r--ftp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/ftp.c b/ftp.c
index d0a63ca..ca1628b 100644
--- a/ftp.c
+++ b/ftp.c
@@ -1,4 +1,4 @@
-/* $Id: ftp.c,v 1.30 2003/04/06 16:27:54 ukai Exp $ */
+/* $Id: ftp.c,v 1.31 2003/04/07 15:26:15 ukai Exp $ */
#include <stdio.h>
#include <pwd.h>
#include <Str.h>
@@ -15,11 +15,9 @@
#endif /* DEBUG */
#include <sys/socket.h>
-#if defined(INET6)
#include <netinet/in.h>
#include <netdb.h>
#include <arpa/inet.h>
-#endif
typedef struct _FTP {
char *host;