summaryrefslogtreecommitdiff
path: root/debian/patches/golang-1.3-compat
diff options
context:
space:
mode:
authorflu0r1ne <flu0r1ne@flu0r1ne.net>2021-08-31 00:23:45 -0500
committerflu0r1ne <flu0r1ne@flu0r1ne.net>2021-08-31 00:23:45 -0500
commitf7d6def397205c87aaac119b16ac746e990aab1f (patch)
treeebd7ddb136a1dced076b176e5055ef40c79afd6c /debian/patches/golang-1.3-compat
parentd734617891a6375e64fca59e342d273b9d66d24e (diff)
downloaddeb-planr-f7d6def397205c87aaac119b16ac746e990aab1f.tar.xz
deb-planr-f7d6def397205c87aaac119b16ac746e990aab1f.zip
Reapply patches
Diffstat (limited to 'debian/patches/golang-1.3-compat')
-rw-r--r--debian/patches/golang-1.3-compat23
1 files changed, 0 insertions, 23 deletions
diff --git a/debian/patches/golang-1.3-compat b/debian/patches/golang-1.3-compat
deleted file mode 100644
index f157402..0000000
--- a/debian/patches/golang-1.3-compat
+++ /dev/null
@@ -1,23 +0,0 @@
-Index: planr/fs.go
-===================================================================
---- planr.orig/fs.go
-+++ planr/fs.go
-@@ -220,7 +220,7 @@ func collectFromDir(
-
- // Read the entries in this directory
- for {
-- dirs, err := fp.ReadDir(100)
-+ dirs, err := fp.Readdir(100)
- if err == io.EOF {
- break
- } else if err != nil {
-@@ -229,8 +229,8 @@ func collectFromDir(
-
-
- for _, ent := range dirs {
-- child := path.Join(dir, ent.Name())
- nm := ent.Name()
-+ child := path.Join(dir, nm)
-
- if ent.IsDir() {
- collectFromDir(child, defaults, cfgs, units)