summaryrefslogtreecommitdiff
path: root/www/ap2-suphp/patches/patch-src_IniSection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'www/ap2-suphp/patches/patch-src_IniSection.cpp')
-rw-r--r--www/ap2-suphp/patches/patch-src_IniSection.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/www/ap2-suphp/patches/patch-src_IniSection.cpp b/www/ap2-suphp/patches/patch-src_IniSection.cpp
deleted file mode 100644
index bb910e1595e..00000000000
--- a/www/ap2-suphp/patches/patch-src_IniSection.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-src_IniSection.cpp,v 1.1 2013/05/06 15:02:13 joerg Exp $
-
---- src/IniSection.cpp.orig 2013-05-04 14:22:11.000000000 +0000
-+++ src/IniSection.cpp
-@@ -36,8 +36,8 @@ void suPHP::IniSection::putValue(const s
- const std::vector<std::string> suPHP::IniSection::getValues(const std::string& key) const
- throw (KeyNotFoundException) {
- std::vector<std::string> values;
-- std::pair<std::multimap<const std::string, const std::string>::const_iterator, std::multimap<const std::string, const std::string>::const_iterator> range = this->entries.equal_range(key);
-- for (std::multimap<const std::string, const std::string>::const_iterator pos =
-+ std::pair<std::multimap<std::string, std::string>::const_iterator, std::multimap<std::string, std::string>::const_iterator> range = this->entries.equal_range(key);
-+ for (std::multimap<std::string, std::string>::const_iterator pos =
- range.first; pos != range.second; pos++) {
- values.push_back(pos->second);
- }
-@@ -62,7 +62,7 @@ std::string suPHP::IniSection::getValue(
-
- const std::vector<std::string> suPHP::IniSection::getKeys() const {
- std::vector<std::string> keys;
-- for (std::multimap<const std::string, const std::string>::const_iterator pos =
-+ for (std::multimap<std::string, std::string>::const_iterator pos =
- this->entries.begin();
- pos != this->entries.end(); pos++) {
- keys.push_back(pos->first);