From c33cdfcd56cf8bc964bb0e82684fedc7f532d259 Mon Sep 17 00:00:00 2001 From: Fumitoshi UKAI Date: Thu, 29 Nov 2001 09:34:14 +0000 Subject: [w3m-dev 02584] code cleanup again From: Fumitoshi UKAI --- ftp.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ftp.c') diff --git a/ftp.c b/ftp.c index 93c3382..5c5e150 100644 --- a/ftp.c +++ b/ftp.c @@ -1,4 +1,4 @@ -/* $Id: ftp.c,v 1.6 2001/11/24 02:01:26 ukai Exp $ */ +/* $Id: ftp.c,v 1.7 2001/11/29 09:34:14 ukai Exp $ */ #include #include #include @@ -121,9 +121,9 @@ FtpLogin(FTP * ftp_return, char *host, char *user, char *pass) struct hostent *sockent; Str tmp2 = Strnew_charp(pass); - if (sockent = gethostbyaddr((char *)&sockname.sin_addr, - sizeof(sockname.sin_addr), - sockname.sin_family)) + if ((sockent = gethostbyaddr((char *)&sockname.sin_addr, + sizeof(sockname.sin_addr), + sockname.sin_family))) Strcat_charp(tmp2, sockent->h_name); else Strcat_m_charp(tmp2, "[", inet_ntoa(sockname.sin_addr), @@ -401,7 +401,7 @@ openFTP(ParsedURL *pu) char *qdir; char **flist; int i, nfile, nfile_max = 100; - Str pwd; + Str pwd = NULL; int add_auth_cookie_flag; char *realpath = NULL; #ifdef JP_CHARSET -- cgit v1.2.3