diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-08-31 00:23:45 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-08-31 00:23:45 -0500 |
| commit | 4434bfd5b5b74adddf0fe51b530d5960fccd0010 (patch) | |
| tree | cd1157dbb382e1ad41b624b640c36fd4176b688b /debian/patches/golang-1.3-compat-readdir | |
| parent | d784a48bb19876a16f51e997c6a3d76a417fe580 (diff) | |
Reapply patches
Diffstat (limited to 'debian/patches/golang-1.3-compat-readdir')
| -rw-r--r-- | debian/patches/golang-1.3-compat-readdir | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/patches/golang-1.3-compat-readdir b/debian/patches/golang-1.3-compat-readdir new file mode 100644 index 0000000..b9e5c6d --- /dev/null +++ b/debian/patches/golang-1.3-compat-readdir @@ -0,0 +1,23 @@ +Index: planr/fs.go +=================================================================== +--- planr.orig/fs.go ++++ planr/fs.go +@@ -224,7 +224,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 { +@@ -233,8 +233,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) |
