summaryrefslogtreecommitdiff
path: root/libre/kodi/fix-ftpparse.patch
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2017-09-18 11:13:37 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2017-09-18 11:13:37 -0500
commit10b21de937ef586b9d27d0b9bbfad7a142a38cb2 (patch)
tree540251833ecbbafd322aebdbc80479af3a650fd0 /libre/kodi/fix-ftpparse.patch
parent2373acf71afc4509e30de109d5fdac10d3a7711a (diff)
downloadabslibre-10b21de937ef586b9d27d0b9bbfad7a142a38cb2.tar.gz
abslibre-10b21de937ef586b9d27d0b9bbfad7a142a38cb2.tar.bz2
abslibre-10b21de937ef586b9d27d0b9bbfad7a142a38cb2.zip
kodi-17.4-1.parabola1: updating version
Diffstat (limited to 'libre/kodi/fix-ftpparse.patch')
-rw-r--r--libre/kodi/fix-ftpparse.patch71
1 files changed, 0 insertions, 71 deletions
diff --git a/libre/kodi/fix-ftpparse.patch b/libre/kodi/fix-ftpparse.patch
deleted file mode 100644
index feec94922..000000000
--- a/libre/kodi/fix-ftpparse.patch
+++ /dev/null
@@ -1,71 +0,0 @@
---- a/xbmc/filesystem/FTPParse.cpp 2017-05-24 22:49:32.000000000 +0200
-+++ b/xbmc/filesystem/FTPParse.cpp 2017-07-15 14:15:54.908823456 +0200
-@@ -34,7 +34,7 @@
- m_time = 0;
- }
-
--string CFTPParse::getName()
-+std::string CFTPParse::getName()
- {
- return m_name;
- }
-@@ -59,16 +59,16 @@
- return m_time;
- }
-
--void CFTPParse::setTime(string str)
-+void CFTPParse::setTime(std::string str)
- {
- /* Variables used to capture patterns via the regexes */
-- string month;
-- string day;
-- string year;
-- string hour;
-- string minute;
-- string second;
-- string am_or_pm;
-+ std::string month;
-+ std::string day;
-+ std::string year;
-+ std::string hour;
-+ std::string minute;
-+ std::string second;
-+ std::string am_or_pm;
-
- /* time struct used to set the time_t variable */
- struct tm time_struct = {};
-@@ -338,21 +338,21 @@
- return day_of_week;
- }
-
--int CFTPParse::FTPParse(string str)
-+int CFTPParse::FTPParse(std::string str)
- {
- /* Various variable to capture patterns via the regexes */
-- string permissions;
-- string link_count;
-- string owner;
-- string group;
-- string size;
-- string date;
-- string name;
-- string type;
-- string stuff;
-- string facts;
-- string version;
-- string file_id;
-+ std::string permissions;
-+ std::string link_count;
-+ std::string owner;
-+ std::string group;
-+ std::string size;
-+ std::string date;
-+ std::string name;
-+ std::string type;
-+ std::string stuff;
-+ std::string facts;
-+ std::string version;
-+ std::string file_id;
-
- /* Regex for standard Unix listing formats */
- pcrecpp::RE unix_re("^([-bcdlps])" // type