From bc9bd0e31e1ceebd93316a6e3bb9817ed728a74a Mon Sep 17 00:00:00 2001 From: Daniel Lezcano Date: Sun, 3 Oct 2010 23:09:35 +0200 Subject: [PATCH] use the rootfs mount point for the tty's The rootfs is always located in rootfs->mount, let's use it for the tty. Signed-off-by: Daniel Lezcano --- src/lxc/conf.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lxc/conf.c b/src/lxc/conf.c index 775583789..3da522f84 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -386,12 +386,15 @@ static int setup_tty(const struct lxc_rootfs *rootfs, char path[MAXPATHLEN]; int i; + if (!rootfs->path) + return 0; + for (i = 0; i < tty_info->nbtty; i++) { struct lxc_pty_info *pty_info = &tty_info->pty_info[i]; snprintf(path, sizeof(path), "%s/dev/tty%d", - rootfs->path ? rootfs->path : "", i + 1); + rootfs->mount ? rootfs->mount : LXCROOTFSMOUNT, i + 1); /* At this point I can not use the "access" function * to check the file is present or not because it fails -- 2.47.2