diff options
author | Qi Wang <qiwan@redhat.com> | 2018-10-22 12:41:21 -0400 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2018-10-29 06:39:39 -0400 |
commit | 22390b3b0441731e14143c560f3e330623922009 (patch) | |
tree | ed579d0ff42bd792786de1b6b1829327beb08895 /pkg/spec/config_linux.go | |
parent | 49555721ec84ca630e8fbbf32a400e523c477439 (diff) | |
download | podman-22390b3b0441731e14143c560f3e330623922009.tar.gz podman-22390b3b0441731e14143c560f3e330623922009.tar.bz2 podman-22390b3b0441731e14143c560f3e330623922009.zip |
Change to exported name in ParseDevice
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'pkg/spec/config_linux.go')
-rw-r--r-- | pkg/spec/config_linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/spec/config_linux.go b/pkg/spec/config_linux.go index 20cdcc458..5bf8eff43 100644 --- a/pkg/spec/config_linux.go +++ b/pkg/spec/config_linux.go @@ -28,7 +28,7 @@ func Device(d *configs.Device) spec.LinuxDevice { } func addDevice(g *generate.Generator, device string) error { - src, dst, permissions, err := parseDevice(device) + src, dst, permissions, err := ParseDevice(device) if err != nil { return err } |