From 14798c25c4bd58fcd906eac7a2df4578b00056ef Mon Sep 17 00:00:00 2001 From: David Crosby Date: Sun, 26 Jul 2015 00:08:52 -0600 Subject: Move sockent for splint --- ftp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ftp.c') diff --git a/ftp.c b/ftp.c index 2ad829c..2ca0247 100644 --- a/ftp.c +++ b/ftp.c @@ -140,7 +140,6 @@ ftp_login(FTP ftp) socklen_t socknamelen = sizeof(sockname); if (!getsockname(sock, (struct sockaddr *)&sockname, &socknamelen)) { - struct hostent *sockent; Str tmp = Strnew_charp(ftp->pass); #ifdef INET6 char hostbuf[NI_MAXHOST]; @@ -157,6 +156,7 @@ ftp_login(FTP ftp) Strcat_charp(tmp, "unknown"); #else + struct hostent *sockent; if ((sockent = gethostbyaddr((char *)&sockname.sin_addr, sizeof(sockname.sin_addr), sockname.sin_family))) -- cgit v1.2.3