diff options
Diffstat (limited to 'cmd/podman/pod_ps.go')
-rw-r--r-- | cmd/podman/pod_ps.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/pod_ps.go b/cmd/podman/pod_ps.go index 58f404e7a..e03794e7f 100644 --- a/cmd/podman/pod_ps.go +++ b/cmd/podman/pod_ps.go @@ -474,7 +474,7 @@ func getSharedNamespaces(pod *libpod.Pod) []string { if pod.SharesNet() { shared = append(shared, "net") } - if pod.SharesMNT() { + if pod.SharesMount() { shared = append(shared, "mnt") } if pod.SharesIPC() { |