[Pkg-ceph-commits] [ceph] 04/09: Remove patch CVE-2015-5245 applied upstream

Gaudenz Steinlin gaudenz at moszumanska.debian.org
Mon Dec 26 20:48:04 UTC 2016


This is an automated email from the git hooks/post-receive script.

gaudenz pushed a commit to tag debian/0.80.11-1
in repository ceph.

commit 07abd977cf0fa8e6b565692d8ff956693d9efbd5
Author: Gaudenz Steinlin <gaudenz at debian.org>
Date:   Thu Jan 14 22:10:38 2016 +0100

    Remove patch CVE-2015-5245 applied upstream
---
 debian/patches/CVE-2015-5245.patch | 31 -------------------------------
 debian/patches/series              |  1 -
 2 files changed, 32 deletions(-)

diff --git a/debian/patches/CVE-2015-5245.patch b/debian/patches/CVE-2015-5245.patch
deleted file mode 100644
index 8c59d06..0000000
--- a/debian/patches/CVE-2015-5245.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From ad5507fe0bf72ed5bdf8353e315cc9092c740144 Mon Sep 17 00:00:00 2001
-From: Yehuda Sadeh <yehuda at redhat.com>
-Date: Thu, 30 Jul 2015 14:47:15 -0700
-Subject: [PATCH] rgw: url encode exposed bucket
-
-Fixes: #12537
-Don't send the bucket name back without url encoding it.
-
-Signed-off-by: Yehuda Sadeh <yehuda at redhat.com>
----
- src/rgw/rgw_rest.cc | 7 +++++--
- 1 file changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/src/rgw/rgw_rest.cc b/src/rgw/rgw_rest.cc
-index a03e31f..84681c7 100644
---- a/src/rgw/rgw_rest.cc
-+++ b/src/rgw/rgw_rest.cc
-@@ -361,8 +361,11 @@ void dump_bucket_from_state(struct req_state *s)
- {
-   int expose_bucket = g_conf->rgw_expose_bucket;
-   if (expose_bucket) {
--    if (!s->bucket_name_str.empty())
--      s->cio->print("Bucket: %s\r\n", s->bucket_name_str.c_str());
-+    if (!s->bucket_name_str.empty()) {
-+      string b;
-+      url_encode(s->bucket_name_str, b);
-+      s->cio->print("Bucket: %s\r\n", b.c_str());
-+    }
-   }
- }
- 
diff --git a/debian/patches/series b/debian/patches/series
index a1fde64..1f0f44c 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -12,7 +12,6 @@ backfill-prio.patch
 bash-completion.patch
 rbdmap1-mount.patch
 rbdmap2-hooks.patch
-CVE-2015-5245.patch
 boost-1.57_1.patch
 boost-1.57_2.patch
 boost-1.58.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ceph/ceph.git



More information about the Pkg-ceph-commits mailing list