aboutsummaryrefslogtreecommitdiffstats
path: root/ftp.c
diff options
context:
space:
mode:
authorDai Sato <satodai@w3m.jp>2007-05-31 01:19:50 +0000
committerDai Sato <satodai@w3m.jp>2007-05-31 01:19:50 +0000
commit50c06d19a9db3878ad4e8bd6c8b4f55613de6d8d (patch)
treed8caf1d1c50a2eda88e40cb0c3059a04a5b67d9d /ftp.c
parentfix for tab browsing. [w3m-dev 04266] (diff)
downloadw3m-50c06d19a9db3878ad4e8bd6c8b4f55613de6d8d.tar.gz
w3m-50c06d19a9db3878ad4e8bd6c8b4f55613de6d8d.zip
fix type, add GC_INIT().
Diffstat (limited to '')
-rw-r--r--ftp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ftp.c b/ftp.c
index ce4ae19..e3f8c2e 100644
--- a/ftp.c
+++ b/ftp.c
@@ -1,4 +1,4 @@
-/* $Id: ftp.c,v 1.38 2007/05/23 15:06:05 inu Exp $ */
+/* $Id: ftp.c,v 1.39 2007/05/31 01:19:50 inu Exp $ */
#include <stdio.h>
#ifndef __MINGW32_VERSION
#include <pwd.h>
@@ -398,7 +398,7 @@ openFTPStream(ParsedURL *pu, URLFile *uf)
tmp = Strnew_charp(mypw ? mypw->pw_name : "anonymous");
#else
tmp = Strnew_charp("anonymous");
-#endif __MINGW32_VERSION
+#endif /* __MINGW32_VERSION */
Strcat_char(tmp, '@');
pass = tmp->ptr;
}