mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-12 09:46:25 +08:00
87412ee435
It contains some breaking changes, so fix the code. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
11 lines
181 B
Go
11 lines
181 B
Go
package mountinfo
|
|
|
|
func parseMountTable(_ FilterFunc) ([]*Info, error) {
|
|
// Do NOT return an error!
|
|
return nil, nil
|
|
}
|
|
|
|
func mounted(_ string) (bool, error) {
|
|
return false, nil
|
|
}
|