diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2013-07-25 12:08:16 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2013-07-25 12:08:16 +0000 |
commit | c3a95c94ca9527fc2abe649e6a9c8c4aa9b7695b (patch) | |
tree | e2b98aad6b90a03113e515cef786876cf9cff0d5 /net-fs | |
parent | Fixed pathname escaping when passed to libcurl (bug #458110 by Jaakko Perttil... (diff) | |
download | gentoo-2-c3a95c94ca9527fc2abe649e6a9c8c4aa9b7695b.tar.gz gentoo-2-c3a95c94ca9527fc2abe649e6a9c8c4aa9b7695b.tar.bz2 gentoo-2-c3a95c94ca9527fc2abe649e6a9c8c4aa9b7695b.zip |
Fixed outdated comment in patch.
(Portage version: 2.2.0_alpha188_p25/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/curlftpfs/ChangeLog | 6 | ||||
-rw-r--r-- | net-fs/curlftpfs/files/curlftpfs-0.9.2-fix-escaping.patch | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/net-fs/curlftpfs/ChangeLog b/net-fs/curlftpfs/ChangeLog index 73a1aa5ec7c9..f12fd1d94087 100644 --- a/net-fs/curlftpfs/ChangeLog +++ b/net-fs/curlftpfs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-fs/curlftpfs # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/curlftpfs/ChangeLog,v 1.29 2013/07/25 12:04:06 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/curlftpfs/ChangeLog,v 1.30 2013/07/25 12:08:16 slyfox Exp $ + + 25 Jul 2013; Sergei Trofimovich <slyfox@gentoo.org> + files/curlftpfs-0.9.2-fix-escaping.patch: + Fixed outdated comment in patch. *curlftpfs-0.9.2-r3 (25 Jul 2013) diff --git a/net-fs/curlftpfs/files/curlftpfs-0.9.2-fix-escaping.patch b/net-fs/curlftpfs/files/curlftpfs-0.9.2-fix-escaping.patch index 29251f993e40..df15bddd562f 100644 --- a/net-fs/curlftpfs/files/curlftpfs-0.9.2-fix-escaping.patch +++ b/net-fs/curlftpfs/files/curlftpfs-0.9.2-fix-escaping.patch @@ -8,10 +8,10 @@ Path fixes at least following cases: The fix is basically following mechanical conversion: --- curl_easy_setopt_or_die(ftpfs.connection, CURLOPT_URL, something); -+++ escaped_something = ftpfs.connection, something, 0); -+++ curl_easy_setopt_or_die(ftpfs.connection, CURLOPT_URL, something); ++++ something_uri = path_to_uri(something); ++++ curl_easy_setopt_or_die(ftpfs.connection, CURLOPT_URL, something_uri); === curl_easy_perform(); -+++ curl_free(escaped_something); ++++ free_uri(something_uri); What is not yet converted is ftp hostname. |