1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #22433 from rhatdan/labels

We should always return the MountLabel
This commit is contained in:
Sebastiaan van Stijn 2016-05-07 00:24:27 +02:00
commit 926725b470

View file

@ -340,9 +340,6 @@ func (container *Container) GetProcessLabel() string {
// GetMountLabel returns the mounting label for the container.
// This label is empty if the container is privileged.
func (container *Container) GetMountLabel() string {
if container.HostConfig.Privileged {
return ""
}
return container.MountLabel
}