summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/mono/files/fix-for-bug36724.patch')
-rw-r--r--dev-lang/mono/files/fix-for-bug36724.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/dev-lang/mono/files/fix-for-bug36724.patch b/dev-lang/mono/files/fix-for-bug36724.patch
deleted file mode 100644
index 187b4babed20..000000000000
--- a/dev-lang/mono/files/fix-for-bug36724.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/mcs/class/System.Web/System.Web.Util/UrlUtils.cs b/mcs/class/System.Web/System.Web.Util/UrlUtils.cs
-index 4f07e83..e229a91 100644
---- a/mcs/class/System.Web/System.Web.Util/UrlUtils.cs
-+++ b/mcs/class/System.Web/System.Web.Util/UrlUtils.cs
-@@ -54,7 +54,7 @@ namespace System.Web.Util {
- if (path.StartsWith (appvpath))
- path = path.Substring (appvpath.Length);
-
-- if (path [0] == '/')
-+ if (path.StartsWith("/"))
- path = path.Length > 1 ? path.Substring (1) : "";
-
- return Canonic (appvpath + "(" + id + ")/" + path);