diff options
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/boltdb_state_unsupported.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libpod/boltdb_state_unsupported.go b/libpod/boltdb_state_unsupported.go index 4565c1890..64610d304 100644 --- a/libpod/boltdb_state_unsupported.go +++ b/libpod/boltdb_state_unsupported.go @@ -2,10 +2,6 @@ package libpod -import ( - "github.com/sirupsen/logrus" -) - // replaceNetNS is exclusive to the Linux platform and is a no-op elsewhere func replaceNetNS(netNSPath string, ctr *Container, newState *containerState) error { return nil @@ -13,5 +9,5 @@ func replaceNetNS(netNSPath string, ctr *Container, newState *containerState) er // getNetNSPath is exclusive to the Linux platform and is a no-op elsewhere func getNetNSPath(ctr *Container) string { - return + return "" } |