summaryrefslogtreecommitdiff
path: root/libpod/container.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-02-28 09:29:46 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-01 21:17:51 +0000
commitc5dc7f81fc5a1078b0bc66bd9e7a1f23a03242c5 (patch)
treef0f80eecfc6bd3b4a03b41d43ebef52207cbe1ca /libpod/container.go
parentfa5f99effa7dd2ef9fbd5287b6225590b28713d1 (diff)
downloadpodman-c5dc7f81fc5a1078b0bc66bd9e7a1f23a03242c5.tar.gz
podman-c5dc7f81fc5a1078b0bc66bd9e7a1f23a03242c5.tar.bz2
podman-c5dc7f81fc5a1078b0bc66bd9e7a1f23a03242c5.zip
Replace usage of runc with runtime
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #412 Approved by: baude
Diffstat (limited to 'libpod/container.go')
-rw-r--r--libpod/container.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container.go b/libpod/container.go
index 8dee0ae2e..dddf3d879 100644
--- a/libpod/container.go
+++ b/libpod/container.go
@@ -466,7 +466,7 @@ func (c *Container) CgroupParent() string {
// LogPath returns the path to the container's log file
// This file will only be present after Init() is called to create the container
-// in runc
+// in the runtime
func (c *Container) LogPath() string {
return c.config.LogPath
}