Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 03 Apr 2016 09:27:05 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 208121] ftp/filezilla: After update to 3.16.0 I can't connect to any FTP server
Message-ID:  <bug-208121-13-am0ZbXbEkJ@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-208121-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-208121-13@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D208121

mikael.urankar@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mikael.urankar@gmail.com

--- Comment #6 from mikael.urankar@gmail.com ---
The problem is here:
https://svn.filezilla-project.org/filezilla/FileZilla3/branches/3.16.x/src/=
engine/socket.cpp?revision=3D7372&view=3Dmarkup#l247

to_utf8 doesn't seem to work correctly on FreeBSD (it comes from
ftp/libfilezilla).

You can try, as a temporary workaround and until a correct fix is found,
replace:
247 m_host =3D fz::to_utf8(m_pSocket->m_host);
248 if (m_host.empty()) {
249    return EINVAL;
250 }

to=20
247 m_host =3D m_pSocket->m_host;

as seen in a previous revision of socket.cpp:
https://svn.filezilla-project.org/filezilla/FileZilla3/branches/3.16.x/src/=
engine/socket.cpp?r1=3D7296&r2=3D7304

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-208121-13-am0ZbXbEkJ>