summaryrefslogtreecommitdiff
path: root/libpod/container_path_resolution.go
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2022-09-14 13:03:56 +0200
committerGiuseppe Scrivano <gscrivan@redhat.com>2022-09-14 17:08:57 +0200
commit92dc61d5edb1b5ce85f7e4563d400cc861a28359 (patch)
treeae03dc1172ae575bbc27da284a11ca6a6f55ad62 /libpod/container_path_resolution.go
parent017d81ddd0e8d228aadb949175c0aae1e4b9d925 (diff)
downloadpodman-92dc61d5edb1b5ce85f7e4563d400cc861a28359.tar.gz
podman-92dc61d5edb1b5ce85f7e4563d400cc861a28359.tar.bz2
podman-92dc61d5edb1b5ce85f7e4563d400cc861a28359.zip
libpod: rename function
the function checks if a path is under any mount, not just bind mounts. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'libpod/container_path_resolution.go')
-rw-r--r--libpod/container_path_resolution.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpod/container_path_resolution.go b/libpod/container_path_resolution.go
index 35622d623..eddfd361e 100644
--- a/libpod/container_path_resolution.go
+++ b/libpod/container_path_resolution.go
@@ -152,9 +152,9 @@ func findBindMount(c *Container, containerPath string) *specs.Mount {
return nil
}
-/// isPathOnBindMount returns true if the specified containerPath is a subdir of any
+/// isPathOnMount returns true if the specified containerPath is a subdir of any
// Mount's destination.
-func isPathOnBindMount(c *Container, containerPath string) bool {
+func isPathOnMount(c *Container, containerPath string) bool {
cleanedContainerPath := filepath.Clean(containerPath)
for _, m := range c.config.Spec.Mounts {
if cleanedContainerPath == filepath.Clean(m.Destination) {