When specifying a serial list in domain config, users of
libxl_console_get_tty cannot get the tty path of a second specified pty serial,
since right now it always returns the tty path of serial 0.
Signed-off-by: Bob Liu <bob.liu@oracle.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
switch (type) {
case LIBXL_CONSOLE_TYPE_SERIAL:
- tty_path = GCSPRINTF("%s/serial/0/tty", dom_path);
+ tty_path = GCSPRINTF("%s/serial/%d/tty", dom_path, cons_num);
break;
case LIBXL_CONSOLE_TYPE_PV:
if (cons_num == 0)