aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIto Hiroyuki <ZXB01226@nifty.com>2010-08-11 09:31:33 +0000
committerIto Hiroyuki <ZXB01226@nifty.com>2010-08-11 09:31:33 +0000
commitd33e46e57db2a97fb7c810a7638cea93882eddb1 (patch)
tree10d52b993be480d384389eb682ecaaf879c1dfa3
parent[w3m-dev 04379] check socklen_t (diff)
downloadw3m-d33e46e57db2a97fb7c810a7638cea93882eddb1.tar.gz
w3m-d33e46e57db2a97fb7c810a7638cea93882eddb1.zip
* fix typo
-rw-r--r--ftp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ftp.c b/ftp.c
index f419b16..19c27a5 100644
--- a/ftp.c
+++ b/ftp.c
@@ -1,4 +1,4 @@
-/* $Id: ftp.c,v 1.40 2010/08/10 10:16:57 htrb Exp $ */
+/* $Id: ftp.c,v 1.41 2010/08/11 09:31:33 htrb Exp $ */
#include <stdio.h>
#ifndef __MINGW32_VERSION
#include <pwd.h>
@@ -25,7 +25,7 @@
#include <winsock.h>
#endif /* __MINGW32_VERSION */
-#ifdef HAVE_SOCKLEN_T
+#ifndef HAVE_SOCKLEN_T
typedef int socklen_t;
#endif