From 22d66ca5850bf0190aa48d7f4442484f01fc7d02 Mon Sep 17 00:00:00 2001 From: Dai Sato Date: Fri, 7 Apr 2006 13:21:11 +0000 Subject: rewind to 10 Feb 2006. --- ftp.c | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) (limited to 'ftp.c') diff --git a/ftp.c b/ftp.c index 957ba6c..0ebb930 100644 --- a/ftp.c +++ b/ftp.c @@ -1,8 +1,6 @@ -/* $Id: ftp.c,v 1.36 2006/04/05 14:18:54 inu Exp $ */ +/* $Id: ftp.c,v 1.37 2006/04/07 13:21:11 inu Exp $ */ #include -#ifndef __MINGW32_VERSION #include -#endif /* __MINGW32_VERSION */ #include #include #include @@ -16,14 +14,10 @@ #include #endif /* DEBUG */ -#ifndef __MINGW32_VERSION #include #include #include #include -#else -#include -#endif /* __MINGW32_VERSION */ typedef struct _FTP { char *host; @@ -377,14 +371,7 @@ openFTPStream(ParsedURL *pu, URLFile *uf) term_cbreak(); } else { -#ifndef __MINGW32_VERSION pwd = Strnew_charp((char *)getpass("Password: ")); -#else - term_raw(); - pwd = Strnew_charp(inputLine("Password: ", NULL, IN_PASSWORD)); - pwd = Str_conv_to_system(pwd); - term_cbreak(); -#endif /* __MINGW32_VERSION */ } add_auth_cookie_flag = TRUE; } @@ -393,12 +380,8 @@ openFTPStream(ParsedURL *pu, URLFile *uf) else if (ftppasswd != NULL && *ftppasswd != '\0') pass = ftppasswd; else { -#ifndef __MINGW32_VERSION struct passwd *mypw = getpwuid(getuid()); tmp = Strnew_charp(mypw ? mypw->pw_name : "anonymous"); -#else - tmp = Strnew_charp("anonymous"); -#endif __MINGW32_VERSION Strcat_char(tmp, '@'); pass = tmp->ptr; } -- cgit v1.2.3