1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-13 23:03:19 +00:00

cache: follow move of upstream library github.com/coreos/bbolt github.com/etcd-io/bbolt

This commit is contained in:
Nick Craig-Wood
2019-11-11 14:55:44 +00:00
parent 3da1cbfc81
commit 3dcf1e61cf
36 changed files with 6 additions and 6 deletions

8
vendor/github.com/etcd-io/bbolt/boltsync_unix.go generated vendored Normal file
View File

@@ -0,0 +1,8 @@
// +build !windows,!plan9,!linux,!openbsd
package bbolt
// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
return db.file.Sync()
}