@@ -89,7 +89,7 @@ func init() {
8989 Help : `GZIP compression level (-2 to 9).
9090
9191Generally -1 (default, equivalent to 5) is recommended.
92- Levels 1 to 9 increase compression at the cost of speed. Going past 6
92+ Levels 1 to 9 increase compression at the cost of speed. Going past 6
9393generally offers very little return.
9494
9595Level -2 uses Huffman encoding only. Only use if you know what you
@@ -103,7 +103,7 @@ Level 0 turns off compression.`,
103103In this case the compressed file will need to be cached to determine
104104it's size.
105105
106- Files smaller than this limit will be cached in RAM, files larger than
106+ Files smaller than this limit will be cached in RAM, files larger than
107107this limit will be cached on disk.` ,
108108 Default : fs .SizeSuffix (20 * 1024 * 1024 ),
109109 Advanced : true ,
@@ -1498,6 +1498,13 @@ func (o *Object) ID() string {
14981498 return do .ID ()
14991499}
15001500
1501+ // Fd returns the Fd of the Object
1502+ //
1503+ // It should return fs.ErrorNotImplemented if it's not available
1504+ func (o * Object ) Fd (ctx context.Context , flags int ) (uintptr , error ) {
1505+ return 0 , fs .ErrorNotImplemented
1506+ }
1507+
15011508// Name of the remote (as passed into NewFs)
15021509func (f * Fs ) Name () string {
15031510 return f .name
0 commit comments