summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--net-fs/curlftpfs/ChangeLog6
-rw-r--r--net-fs/curlftpfs/files/curlftpfs-0.9.2-fix-escaping.patch6
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.