From ae0b218c30b6ce5cb02c02e64c4790cd28dd4de5 Mon Sep 17 00:00:00 2001 From: Pavel Tikhomirov Date: Fri, 29 May 2020 14:40:01 +0300 Subject: [PATCH] mount: use ns_mountpoint in aufs_parse At this point ns_mountpoint is equal to mountpoint. Cherry-picked from Virtuozzo criu: https://src.openvz.org/projects/OVZ/repos/criu/commits/c70bd7de0 Signed-off-by: Pavel Tikhomirov --- criu/proc_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/criu/proc_parse.c b/criu/proc_parse.c index 1ec051e6a..a599297f7 100644 --- a/criu/proc_parse.c +++ b/criu/proc_parse.c @@ -2737,7 +2737,7 @@ int aufs_parse(struct mount_info *new) { int ret = 0; - if (!strcmp(new->mountpoint, "./")) { + if (!strcmp(new->ns_mountpoint, "./")) { opts.aufs = true; ret = parse_aufs_branches(new); }