volume/local: make setOpts() a method of localVolume

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2022-05-17 16:55:07 +02:00
parent b56fc2d0f8
commit a77b90c35e
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
3 changed files with 3 additions and 3 deletions

View File

@ -173,7 +173,7 @@ func (r *Root) Create(name string, opts map[string]string) (volume.Volume, error
}
if len(opts) != 0 {
if err = setOpts(v, opts); err != nil {
if err = v.setOpts(opts); err != nil {
return nil, err
}
var b []byte

View File

@ -47,7 +47,7 @@ func (o *optsConfig) String() string {
return fmt.Sprintf("type='%s' device='%s' o='%s' size='%d'", o.MountType, o.MountDevice, o.MountOpts, o.Quota.Size)
}
func setOpts(v *localVolume, opts map[string]string) error {
func (v *localVolume) setOpts(opts map[string]string) error {
if len(opts) == 0 {
return nil
}

View File

@ -14,7 +14,7 @@ import (
type optsConfig struct{}
func setOpts(v *localVolume, opts map[string]string) error {
func (v *localVolume) setOpts(opts map[string]string) error {
if len(opts) > 0 {
return errdefs.InvalidParameter(errors.New("options are not supported on this platform"))
}